I wanted to have a javascript/jQuery popup windows (child page) that always in front of the parent page, something like facebook current view picture feature.
it can be close by user click on the close button.
I had tried as below:
mywindow = window.open ("DownloadForm.aspx", "mywindow","location=1,status=1,scrollbars=1, width=350,height=150");
mywindow.moveTo(350, 350);
this code successfully popup child page in front of the parent page,
however there is a jQuery code $(#test).click() in parent page which caused the parent page will always in front,
I had put the window.open() code after $(#test).click(), but it seem like still not able to solve this.
The $(#test).click() is necessary, therefore I need to have a workaround.
Appreciate any help, thank you in advanced.
{modal: true}- this will open a pseudo-subwindow and grey out the original page, keeping the dialog "on top" until it closes. Try Googling jquery lightbox, too - I think those would apply here as well, though I've never used them myself... Good luck! – Xavier Holt Apr 7 '11 at 5:58