L
lazar
I'm triing to write script that close popup window, when user click
outside the popup.
Script below is working fine in firefox (v1.0.3), but not in IE.
I tried also to print hello but still the same problem firefox OK IE
not.
I think the problem is in event capture, but I can't fix it.
My script:
fotowin = window.open("", "foto", "width =100,height
=100,location=no,menubar=no,directories=no,toolbar=no,scrollbars=no,resizable=no,status=no");
fotowin.onblur = closeWin;
if (fotowin.captureEvents) {
fotowin.captureEvents(Event.BLUR);
}
function closeWin() {
fotowin.close();
//fotowin.document.write("hello");
}
thanks for your help.
outside the popup.
Script below is working fine in firefox (v1.0.3), but not in IE.
I tried also to print hello but still the same problem firefox OK IE
not.
I think the problem is in event capture, but I can't fix it.
My script:
fotowin = window.open("", "foto", "width =100,height
=100,location=no,menubar=no,directories=no,toolbar=no,scrollbars=no,resizable=no,status=no");
fotowin.onblur = closeWin;
if (fotowin.captureEvents) {
fotowin.captureEvents(Event.BLUR);
}
function closeWin() {
fotowin.close();
//fotowin.document.write("hello");
}
thanks for your help.