Print content of div using jQuery
Print content of div using jQuery
http://www.aspdotnet-suresh.com/2013/08/jquery-print-div-content-with-css-using.html
Inclide jquery.js & jQuery.print.js
$("#hrefPrint").click(function() {
// Print the DIV.
$("#printdiv").print();
return (false);
});
<style type="text/css" media="print">
.nonPrintable{display:none;}
</style>

Post a Comment