Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Howto Include JavaScript to CGI.pm Script

by atemon (Chaplain)
on Aug 28, 2007 at 03:47 UTC ( [id://635485]=note: print w/replies, xml ) Need Help??


in reply to Howto Include JavaScript to CGI.pm Script

The function call document.getElementById('2 Fastest'); returns null, since you are NOT printing any IDs for check boxes. To print Ids, you can use the 'attributes' option of 'checkbox_group' in CGI. The code with ids will look like :

sub generate_form { print start_multipart_form(), #strong('Your email: '), #textfield( -name => 'user_email' ), br, br strong('Basic Programs To Choose: '), br checkbox_group( -name => 'progname', -values => [ '2 Fastest', 'MEME', 'MITRA', 'SPACE', ], -attributes=>{'2 Fastest'=>{'id'=>'2 Fastest'}}, #the extra li +ne added to print id -rows => '2', -columns => '6', -defaults => [ '2 Fastest' ], -onClick=>"checkBoxClick()", #modified as advised by ikegami, + but still not functioning ), p, }
Hope this will help.

Cheers !

--VC



There are three sides to any argument.....
your side, my side and the right side.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://635485]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (6)
As of 2024-04-24 09:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found