in reply to Re: (OT) onClick event in cgi not workling
in thread (OT) onClick event in cgi not workling

This node falls below the community's threshold of quality. You may see it by logging in.
  • Comment on Re^2: (OT) onClick event in cgi not workling

Replies are listed 'Best First'.
Re^3: (OT) onClick event in cgi not workling
by marto (Cardinal) on Apr 05, 2012 at 10:34 UTC

    If you mean a perl function this isn't going to work, when the HTML is rendered in the users browser it has no idea what perl code you may have on the server side script which generated it. Consider using AJAX to call server side functions.

    Update: I use the jQuery framework and CGI::Application (using templtes to keep my Perl code from HTML/CSS/JS separate)for this sort of work.