Hi all,
need really urgent (I wouldn’t normally ask like this but it really is urgent) help with disabling tabs in IE7 so that a javascript pop up will still work.
If a user has set their settings to open in a new tab, is there any way to bypass this? Is this the default setting? My pop up works fine in IE6 and FF2 but IE7 keeps opening in a new tab
please help!
here’s my js:
<script language=“JavaScript”>
function Launch(page, width, height) {
OpenWin = this.open(page, “ubiqwindow”, “toolbar=no, menubar=no ,location=no, scrollbars=no, resizable=no, width=” + width + “, height=” + height + “, top=” + (screen.height/2 - height/2) + “, left=” + (screen.width/2 - width/2) + “”");
}
</script>