Possible Duplicate:
Access a window by window name
Suppose I do:
window.open(url, 'somewindowname');
How can I get a reference to the newly opened window using the window name ('somewindowname') using jQuery?
Perhaps something in the form of $('somewindowname')
or something....