I have a link on my webpage to print the webpage. However, the link is also visible in the printout itself.
Is there javascript or HTML code which would hide the lin
In your stylesheet add:
@media print { .no-print, .no-print * { display: none !important; } }
Then add class='no-print' (or add the no-print class to an existing class statement) in your HTML that you don't want to appear in the printed version, such as your button.
class='no-print'