You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's say document has following javascript, ono stops whenever it sees ending html tag. However, ono shouldn't parse javascript I guess.
functionPrintDiv(){//Print Content of the Div in a New Blank Windowvardisp_setting="toolbar=no,location=no,directories=no,menubar=no,";varcontent_vlue=document.getElementById('DivBlaBla').innerHTML;vardocprint=window.open("","",disp_setting);docprint.document.open();docprint.document.write('<html><head><title></title>');docprint.document.write('</head><body onLoad="self.print();window.close();">');docprint.document.write(content_vlue);docprint.document.write("</body></html>");docprint.document.close();docprint.focus();}</script>
The text was updated successfully, but these errors were encountered:
Let's say document has following javascript, ono stops whenever it sees ending html tag. However, ono shouldn't parse javascript I guess.
The text was updated successfully, but these errors were encountered: