Hi I'm using svelte for a side project i am doing and i want to print a receipt and not the entire page. is there a way to do it? i saw some other posts talking about how to print a div element using plain JavaScript but this doesn't work in svelte.
example code i want to print only the element with the class printable
<div class="printable"><h1>hello world</h1></div><div class="navbar"><a href="/">home</a><a href="/next">next</a><a href="/profile">profile</a></div>