Has anyone experienced issues printing a full element (body) using the jquery plugin https://github.com/jasonday/printThis? I have only been able to print half of the element vertically. I also tried using raw javascript with window.print();
but encountered the same problem. Here is my current js code:
print: function (jqueryElement) {
//jqueryElement.printThis();
window.print();
},
I even attempted to adjust my css for printing:
@media print {
body {
width: 100%;
}
}
Any advice or solutions would be greatly appreciated! EDIT: I am using bootstrap 3 framework.