This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes HTML, CSS and JavaScript and the fly likes Focus on child window after parent window gets refreshed Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Engineering » HTML, CSS and JavaScript
Reply Bookmark "Focus on child window after parent window gets refreshed" Watch "Focus on child window after parent window gets refreshed" New topic
Author

Focus on child window after parent window gets refreshed

nancy andrew
Ranch Hand

Joined: Jan 19, 2010
Posts: 30
On clicking a particular button in a web page, a pop up appears. And after clicking submit on the pop up, my parent window should get refreshed but the pop up window should be focused. But i find the pop up window goes behind the parent window screen and i couldn't focus on the pop up window using window.focus() method. Kindly provide a solution to place the focus on the pop up window while the parent window refreshing should also happen. And am using IE8. I have tried the following approach.


var popup;
parentwindow = window.open(.........);
//...parentwindow refreshing code.
popup = window.open(.....);
popup.focus(); or popup.window.focus();
Deepshan Shetty
Greenhorn

Joined: May 28, 2012
Posts: 28
Can anyhow help with this??
Facing the same issue
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Focus on child window after parent window gets refreshed
 
Similar Threads
page refresh , have to use ajax
Submitting from pop-up window
how to close child window
Calling ajax
Check if popup window is already open from parent window?