in reply to Re: Displaying cgi-tmpl file in new window
in thread Displaying cgi-tmpl file in new window
In the above code, pageURL is returned as undefined. The eval function is fine-I checked that on a website but pageURL is not initialized to whatever the eval function returns. So far, the second option seems to be working except that I'd like to take this one step further and customize the target window-for which I need to get pageURL above initialized. Comments? Thanks!pageURL = eval("http:\/\/127.0.0.1\/cgi-bin\/prepareDispatch.cgi?subNu +mber="+subNo+"&whichForm=Dispatch"); popupwin = window.open(pageURL,'','toolbar=no,scrollbars=yes,location= +no,width=' + 800 + ',height=' + 650); popupwin.focus();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Displaying cgi-tmpl file in new window
by wfsp (Abbot) on Jul 09, 2004 at 16:46 UTC | |
by thisisperl (Novice) on Jul 09, 2004 at 20:21 UTC |