I have the following function, which works fine in Firefox, but will do nothing in IE8
JavaScript
x
7
1
function print(url) {
2
var w = window.open(url);
3
w.onload = function() {
4
w.print();
5
};
6
}
7
I want to open a webpage and immediately open the print dialogue.
Advertisement
Answer
If you have the hand on the page at url
, place the call there.
In the HTML, at the end of the BODY tag.
Add a SCRIPT tag with your call
JavaScript
1
7
1
<body>
2
3
<script>
4
window.print();
5
</script>
6
</body>
7