Oct 2, 2006 #1 portaldude Programmer Joined Oct 27, 2005 Messages 4 Location US I am trying to open a popup window within a popup window. Is it possible in Javascript? If so can you kindly let me know
I am trying to open a popup window within a popup window. Is it possible in Javascript? If so can you kindly let me know
Oct 2, 2006 #2 BillyRayPreachersSon Programmer Joined Dec 8, 2003 Messages 17,047 Location GB Yes. Opening a popup withini a popup is no different to opening a popup from a regular window - because popup windows are regular windows. You simply use the same notation: Code: window.open(url, winName, args); Hope this helps, Dan Coedit Limited - Delivering standards compliant, accessible web solutions [tt]Dan's Page [blue]@[/blue] Code Couch http://www.codecouch.com/dan/[/tt] Upvote 0 Downvote
Yes. Opening a popup withini a popup is no different to opening a popup from a regular window - because popup windows are regular windows. You simply use the same notation: Code: window.open(url, winName, args); Hope this helps, Dan Coedit Limited - Delivering standards compliant, accessible web solutions [tt]Dan's Page [blue]@[/blue] Code Couch http://www.codecouch.com/dan/[/tt]