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()
I was only able to solve my problem when I used setTimeout() and encapsulated the focus() inside an anonymous function. Here is an example:
setTimeout(function () { myField.focus(); }, 0);