It seems simple but I did not find a way. I open a window:
a. I need that while opening the window is minimized. b. when finished loading, I need to be normalized and then focus on the parent window.
--Code
var openwindow = null;
$(function(){
openwindow = window.open("http://www.domine.com", "winx", "width=200,height=30,toolbar=0,location=0,status=0,scrollbars=0,menubar=0,directories=0,resizable=0");
//minimized -> openwindow
$(openwindow).load(function(){
//normalized -> openwindow
...
//focus in current window
});
});
thanks