Hi guys, I have a DIV that I received the passed js function:
function print(divId) { var det = document.getElementById(divId); $(divId).removeClass(); .. $(divId).removeAttr(); .. var mywindow = window.open(' ', 'Print'); mywindow.document.write('<html><head><title>Account Detail</title>'); mywindow.document.write('<link href="../../css/reset-min.css" rel="stylesheet" type="text/css" />'); mywindow.document.write('</head><body>'); mywindow.document.write(det.innerHTML); mywindow.document.write('</body></html>'); }
I tried some jQuery functions, as shown above, the purchase does not work, because styles are inherited from css templates, so how can I completely remove CSS attributes and styles .. I heard about YUI Reset http://developer.yahoo.com/yui / reset / , but I donโt know how to use it in a new Windows popup
Thanks!
source share