Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question
have you tried removing the moveTo()? -- I suspect that's more likely the issue than the window.open() itself. – Spudley May 31 '11 at 15:52
The problem isn't with window.open(), it's with the way the event handler is working. – Pointy May 31 '11 at 15:55
Have you tried changing the <a> so that it's "href" value is just "#"? – Pointy May 31 '11 at 15:56

2 Answers

Can you try referencing the URL without the HTTP? so somepage.html, or \somepage.html depending on where the file resides on your server?

share|improve this answer
This will not help, I don't think. – Pointy May 31 '11 at 15:56

Unchain the windows function calls and see which one it's actually giving you the error on:

var myWin = window.open("http://somepage.html", "Signin", "width=550,height=600,scrollbars=1");
myWin.moveTo(left, top);

window.open should not give you that error. I'm betting it's the moveTo?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.