I tried to print a div using jqPrint. All the contents that are printed are fine but scroll bar appears in all pages of printed sheets.
Is there any CSS corrections or references needs to be given/added?
Please do help
I tried to print a div using jqPrint. All the contents that are printed are fine but scroll bar appears in all pages of printed sheets.
Is there any CSS corrections or references needs to be given/added?
Please do help
Try this One Example Example Here you can print without scroll
$(function() {
$( "#printMe" ).click(function() {
$('#header').jqprint();
});
});