Pop Ups 
Author Message
 Pop Ups

Help.

Can anybody tell me how to invoke alert windows?
Basically I have a form page, and if the user doesn't fill in required
information I want a little alert box to pop up and inform them so and send
them back to the page  to fill out the details they missed.

--
Nick Gushlow
-------oOo-------



Wed, 18 Jun 1902 08:00:00 GMT  
 Pop Ups
Help.

Can anybody tell me how to invoke alert windows?
Basically I have a form page, and if the user doesn't fill in required
information I want a little alert box to pop up and inform them so and send
them back to the page  to fill out the details they missed.

--
Nick Gushlow
-------oOo-------



Wed, 18 Jun 1902 08:00:00 GMT  
 Pop Ups

Quote:
>> On Mon, 7 Aug 2000 17:08:34 +0100,

> Help.  Can anybody tell me how to invoke alert windows?
> Basically I have a form page, and if the user doesn't
> fill in required information I want a little alert box
> to pop up and inform them so and send them back to the
> page to fill out the details they missed.

perldoc -f alarm
perldoc Curses

(your question is ambiguous, please supply more
information about the context in which you are using it.)

hth
t
--
"With $10,000, we'd be millionaires!"
                                           Homer Simpson



Wed, 18 Jun 1902 08:00:00 GMT  
 Pop Ups

Quote:

> Help.

> Can anybody tell me how to invoke alert windows?
> Basically I have a form page, and if the user doesn't fill in required
> information I want a little alert box to pop up and inform them so and send
> them back to the page  to fill out the details they missed.

Hmmm, sounds like your asking a web question. If that is the case then look in
a javascript newsgroup!

Joel



Wed, 18 Jun 1902 08:00:00 GMT  
 Pop Ups

Quote:

> Help.

> Can anybody tell me how to invoke alert windows?
> Basically I have a form page, and if the user doesn't fill in required
> information I want a little alert box to pop up and inform them so and send
> them back to the page  to fill out the details they missed.

Hmmm, sounds like your asking a web question. If that is the case then look in
a javascript newsgroup!

Joel



Wed, 18 Jun 1902 08:00:00 GMT  
 Pop Ups

Quote:

> Help.

> Can anybody tell me how to invoke alert windows?
> Basically I have a form page, and if the user doesn't fill in required
> information I want a little alert box to pop up and inform them so and send
> them back to the page  to fill out the details they missed.

Hmmm, sounds like your asking a web question. If that is the case then look in
a javascript newsgroup!

Joel



Wed, 18 Jun 1902 08:00:00 GMT  
 Pop Ups
I think I understand what you're asking. Though a pop-up window alert
(with or without confirms) is usually done with javascript, there are
occasions when I also want perl to do it. Is Perl capable of doing
something similar to the JS version of alert('Message Goes Here'); ?
Anyone?

Regards,
DENNIS



Wed, 18 Jun 1902 08:00:00 GMT  
 Pop Ups

Quote:
>> On Tue, 8 Aug 2000 19:51:08 -0500 (CDT),

> I think I understand what you're asking. Though a pop-up
> window alert (with or without confirms) is usually done
> with javascript, there are occasions when I also want
> perl to do it. Is Perl capable of doing something
> similar to the JS version of alert('Message Goes Here');
>?

No, perl is server-side.  It does not run in the browser.

hth
t
--
"With $10,000, we'd be millionaires!"
                                           Homer Simpson



Wed, 18 Jun 1902 08:00:00 GMT  
 Pop Ups
But you can embed HTML in the CGI script and then put javascript
commands within the HTML to create a pop-up alert window. But still
you'd be better off talking to a JavaScript person.
Quote:

> >> On Tue, 8 Aug 2000 19:51:08 -0500 (CDT),

> > I think I understand what you're asking. Though a pop-up
> > window alert (with or without confirms) is usually done
> > with javascript, there are occasions when I also want
> > perl to do it. Is Perl capable of doing something
> > similar to the JS version of alert('Message Goes Here');
> >?

> No, perl is server-side.  It does not run in the browser.

> hth
> t
> --
> "With $10,000, we'd be millionaires!"
>                                            Homer Simpson



Wed, 18 Jun 1902 08:00:00 GMT  
 Pop Ups
<script language='javascript'>
window.alert('Message');
</script>

Quote:

> > Help.

> > Can anybody tell me how to invoke alert windows?
> > Basically I have a form page, and if the user doesn't fill in required
> > information I want a little alert box to pop up and inform them so and
send
> > them back to the page  to fill out the details they missed.

> Hmmm, sounds like your asking a web question. If that is the case then
look in
> a javascript newsgroup!

> Joel



Wed, 18 Jun 1902 08:00:00 GMT  
 Pop Ups


Quote:
> <script language='javascript'>
> window.alert('Message');
> </script>

or even better, put the curser in the bad field:

 <script language='javascript'>
 window.alert('Message');
document.formName.badFormElementName.focus();
 </script>

Tim



Wed, 18 Jun 1902 08:00:00 GMT  
 Pop Ups

Quote:



> > <script language='javascript'>
> > window.alert('Message');
> > </script>

> or even better, put the curser in the bad field:

>  <script language='javascript'>
>  window.alert('Message');
> document.formName.badFormElementName.focus();
>  </script>

Even better than that, post a link to a better place to ask this type of
question.

comp.lang.javascript
comp.infosystems.www.authoring.html

As a bonus, you could also remove comp.lang.perl from the newsgroups posted
to.  :-)

Lauren
--
print grep ord $_,map{y/a-z//d;$x.="+ $_";chr(eval $x)}
'J74u43-s2tA1-84n33o45th1er5-12-P3e13-82r48l21H13-a6-76
c40k25er2wx8-y6z13-81'=~m#([^!\n]{3})#g#tr/-0-9//d;print



Wed, 18 Jun 1902 08:00:00 GMT  
 
 [ 12 post ] 

 Relevant Pages 

1. Pop Ups

2. : can pop() pop any array location?

3. UPS calculation problem using qcostcgi.cgi script.

4. New module UPS::Nut

5. UPS shipping code???

6. UPS shipping API problems

7. UPS Shipping cgi/perl script needed

8. Incorporating UPS shipping cost automatically

9. Business::UPS

10. UPS Tools

11. Perl script for UPS listening

12. UPS realtime shipping rates

 

 
Powered by phpBB® Forum Software