jQuery.printElement
jQuery.printElement copied to clipboard
IE printing issue
Dear erikzaadi,
when trying to print the div 'printMe' in the below example, the browser is not recalculating the width to fit the div width , it take the wider div width and scale the page base on it.
<html> <body> <div id="wideDiv" width="1300px">wide div </div> <div id="printMe" width="100px"> content of me </div> <button onclick="$("#printMe").printElement();</button> </body> </html>