Hi there,
Can anyone help, i have a popup that is being blocked .. it is a popup that is created because somebody has clicked on a Print picture on my site... I thought IE is not supposed to block these when the popup came via an onclick?
Can anyone help? the child1 variable is always returned as NULL if popup blocker enabled...
Maybe the problem is that the onclick event then passes control to a new function which loads a html file and does child.document.write
Here is my simple code..
var width = 800;
var height = 600;
var left = parseInt((screen.availWidth / 2) - (width / 2));
var top = parseInt((screen.availHeight / 2) - (height / 2));
var windowFeatures = "width=" + width + ",height=" + height + ",menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
child1 = window.open("about:blank", "subWind", windowFeatures);