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.

Easiest way to explain should be this example http://www.massimofidanza.it/firefox . This works correctly (popup is focussed again) only on IE. Is there any workaround (without closing and opening a new popup)? update: option for javascript to raise popup windows is enabled.

share|improve this question

1 Answer

This seems to work:

make w a global variable. When the popup link is clicked, check if w exists and if it exists, close it and open the other popup...

<script type="text/javascript"> 
var w;
function openPopup(purl)
{
    wndAttr = "width=500,height=400,left=100,top=100";

    if(w) 
    {
    	w.close();
    }
    w = window.open(purl, 'popup_test', wndAttr);
    w.focus();
}
</script>
share|improve this answer
Sorry, but this wont't help in this case. Popup contains flash movie that shouldn't be reloaded, so I cant close and open the popup. Any other suggestions? – Anonymous Jun 23 '09 at 12:22

Your Answer

 
discard

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