Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
firstly apologies A. this is a perl/javascript question
B. Im a perl newbie (ish)
C Im a javascript novice
D. I'm doing somthing stupid!
what's wrong with the code below ??
the function runs (i see the first alert) but in firebug, the next js section causes a "checkbox_form is not defined" and i dont see the alert when no check box's are ticked.
#!/usr/bin/perl use CGI qw(:standard); use CGI::Carp qw(fatalsToBrowser); $JSCRIPT=<<EOF; function validate() { alert(" yes it ran"); var checkbox_choices = 0; // Loop from zero to the one minus the number of checkbox button selec +tions for (counter = 0; counter < checkbox_form.checkbox.length; counter++) { // If a checkbox has been selected it will return true // (If not it will return false) if (checkbox_form.checkbox[counter].checked) { checkbox_choices = checkbox_choices + 1; } } if (checkbox_choices < 1 ) { // If there were less then selections made display an alert box alert("Please make a selection"); return (false); } }; EOF ; print header; print start_html(-script=>$JSCRIPT); print h1("this is the main"); print start_form(-action=>"/cgi-bin/mockup/main2.cgi", -target=>"mainframe", -name=>"checkbox_form", -onSubmit=>"return validate()"), checkbox_group(-name=>"checkbox", -values=>['red','green','blue']), p(),submit; print end_form; print end_html;

In reply to newbie perl cgi.pm/javascript problem by westy032001

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (7)
As of 2024-04-18 15:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found