×

Loading...

It's for you, jabbor...

Your javascript codes do work perfectly in Navigator. I think there's a bug in IE's "print()" function. However, I found a way to round over it.
......
function printFrame1(){
parent.Frame1.window.focus(); //put this line before print(), it works well in both NS and IE.
parent.Frame1.print();
}
......
good luck.
Report