Just wondering if Google Chrome is going to support window.focus() at some point. When I mean support, I mean have it work. The call to it doesn\'t fail, it jus
window.focus()
you can focus another window by calling open with javascript:; as url parameter:
focus
open
javascript:;
url
window.open('http://....', 'myWindow'); // focus that window later on... window.open('javascript:;', 'myWindow');