Re: [Perl-unix-users] calling a perl subroutine when a html checkbox/button is clicked

2007-07-25 Thread Greg Schraiber
I may be wrong but I do not believe you can do this. This works with javascript because the javascript engine is client side (built into the browser). Perl is a server side tool. What you could do is something like this: onclick="document.newForm.submit(); return true;" value="someValue">

[Perl-unix-users] calling a perl subroutine when a html checkbox/button is clicked

2007-07-23 Thread Dhivya Arasappan/O/VCU
 Hi everyone,   I'm writing a perl program for a web interface. In this interface, I'm setting up a html checkbox such that when it is clicked, a perl subroutine is called.   I know that I can call a _javascript_ function when a checkbox is clicked in the following way: print ""; But how can I use