When I load a page from a different domain into a pop-up window, it seems that moveto and moveby are not possible. If I load the content in a div or other element within the pop-up will it be possible to place the pop up where I want on the screen? It seems odd to not be able to do something that is so obviously needed, to just place a pop-up where y

link|improve this question

25% accept rate
feedback

1 Answer

Are you just looking to place the pop-up somewhere on the screen? If so, here are two quick methods:

  1. use screenX and screenY like so newPopUp=window.open(url,'StackOverFlow','height=400, width=450, screenX=250, screenY=300');

  2. use moveTo like so

    newPopUp2=window.open(url,'StackOverFlow','height=400, width=450');
    newPopUp2.moveTo(450, 100);
    

http://jsfiddle.net/jasongennaro/dsPu7/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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