I want to use the same window for various pop-up pages, to avoid swamping the users' PC with new windows.
In IE if the target window already exists it does not automatically take the focus (appear on top) when the new page is loaded into it.
How can I make the new page take the focus automatically when it's finished loading, in all versions of IE from 4 upwards, without creating any page elements which have no other purpose?
window.focus() seems to have no effect in IE. Microsoft's DHTML reference pages suggest IE is moving towards only acting on the focus method for form elements ("must have tabindex"
but the pages I want to show have no need for forms.
In IE if the target window already exists it does not automatically take the focus (appear on top) when the new page is loaded into it.
How can I make the new page take the focus automatically when it's finished loading, in all versions of IE from 4 upwards, without creating any page elements which have no other purpose?
window.focus() seems to have no effect in IE. Microsoft's DHTML reference pages suggest IE is moving towards only acting on the focus method for form elements ("must have tabindex"
