1

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

Dhanasekar Murugesan
  • 3,141
  • 1
  • 18
  • 21

1 Answers1

1

Try this One Example Example Here you can print without scroll

$(function() {
    $( "#printMe" ).click(function() {
        $('#header').jqprint();

    });
});​
softsdev
  • 1,478
  • 2
  • 12
  • 27