Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using Perl to form a pop-up window?

Status
Not open for further replies.

caseyc

Programmer
Apr 1, 1999
51
US
I am wondering if there is any way to use Perl to forma a pop-up window. This is for a Java Chat script which uses JavaSript to form a pop-up window and print the Java Applet insode the pop-up window, but I am converting it to Perl. If there is a way to form a pop-up window with Perl, then my script will be compltely Perl dependent and will not require the use of JavaScript at all. Not that it would make much difference, I just think it would kind of cool.
 
Dunno. Wouldn't you just get your perl script to generate HTML that popped up a window? (not that I know anything about HTML)<br>
<br>
Mike<br>
<p>Mike Lacey<br><a href=mailto:Mike_Lacey@Cargill.Com>Mike_Lacey@Cargill.Com</a><br><a href= Cargill's Corporate Web Site</a><br>
 
When you generate an HTML page with perl, you really just send HTML from inside the perl script to the default output. To generate a popup window, you need to use JavaScript. So, what you do is include JavaScript for a popup window within the HTML, which is within the perl script.<br>
<br>
-- Heidi
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top