in reply to Re: Opening an HTML::Template page in new window
in thread Opening an HTML::Template page in new window
Perfect. Not really a Perl thing, but here's what worked:
HTML: <a href="javascript:help('homehelp');"> <img src="../images/help.gif" alt="home" /></a> JAVASCRIPT: function help (tmpl_to_open) { window.open("http://foobar.com/instances/help?rm=sh&pg="+tmpl_to_o +pen,"optional_page_name","scrollbars=1,location=0,directories=0,statu +s=0,width=550,height=375,toolbar=0,menubar=0,resizable=0"); }
Thanks!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Opening an HTML::Template page in new window
by dorward (Curate) on Apr 26, 2006 at 13:10 UTC | |
by bradcathey (Prior) on Apr 26, 2006 at 13:52 UTC | |
|
Re^3: Opening an HTML::Template page in new window
by kulls (Hermit) on Apr 28, 2006 at 04:30 UTC |