I remember seeing a google maps mashup / music video that created, resized, and moved windows on the screen. What javascript methods are used to do this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I don’t know how reliable this is, but to move the window relative to it’s current position you can do this:
http://www.w3schools.com/jsref/met_win_moveby.asp
To move the window to a certain part of the screen:
http://www.w3schools.com/jsref/met_win_moveto.asp
Courtesy of @Dan Herbert: