Is there a way to easily print content with just one click, without having to go through the preview or print dialog box? Here is a snippet of my code:
<head>
<style type="text/css">
#printable { display: none; }
@media print
{
#non-printable { display: none; }
#printable { display: block; }
}
</style>
</head>
<body>
<div id="non-printable">
Regular page contents
</div>
<div id="printable">
Printable version for the printer
</div>
</body>