i have a big problem with IE (tested versions 6 & 8) issue. Window.open method works correctly in FF, Opera, Chrome. IE opens new window, but loads the same url in main window. I know one solution can be to remove url from href, but i need it for JS turn off case. Also i need positioning for new window.
IE "error console" says: Access denied.
<script type="text/javascript">
function regForm()
{
var left = Math.abs((window.innerWidth - 550) / 2);
var top = Math.abs((window.innerHeight - 600) / 2);
window.open("http://somepage.html", "Signin", "width=550,height=600,scrollbars=1").moveTo(left, top);
}
</script>
<a class="ibm-b1-bttn" href="http://somepage.html" onclick="javascript:regForm(); return false;">Register Now</a>
Please help me, this is very important for me. Thanks a lot!
moveTo()? -- I suspect that's more likely the issue than thewindow.open()itself. – Spudley May 31 '11 at 15:52window.open(), it's with the way the event handler is working. – Pointy May 31 '11 at 15:55<a>so that it's "href" value is just "#"? – Pointy May 31 '11 at 15:56