/ Published in: jQuery
Just a simple snippet to print the page. Add the class where you need.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$(document).ready(function() { $('a.print').click(function() { window.print(); return false; }); });