Please help me with a browser window FOCUS issue
I am working on a session timeout javascript functionality. I have a parent page with a timer that brings up a custom jQuery yes / no dialog after an alloted amount of time. If I have a child browser windows open and I am focused on one of them, when it comes time for the timeout to appear on the parent page, I want that window to come into focus. Currently, when a child window is open, the timeout dialog will open in the parent window but it remains behind the child window, and I want it to always come to the forefront. I have tried using window.focus() but to no avail. I am wondering if there is a way to tell the jQuery dialog to focus to the forefront every time it's called? Thanks in advance.
Robert