in reply to Per CGI::Ajax, different ajax functions on same page

That module is rather old. I would suggest that you bypass CGI::Ajax and use JQuery and write a catcher Perl app to process your data. Using this method allows you to scale your code using any number of the Perl Frameworks or by using old fashion CGI.pm. You also get the benefit of your javascript being usable across browsers.

  • Comment on Re: Per CGI::Ajax, different ajax functions on same page

Replies are listed 'Best First'.
Re^2: Per CGI::Ajax, different ajax functions on same page
by msinfo (Sexton) on Jun 03, 2013 at 16:59 UTC
    Thanks, I am aware of JQuery, and similar libraries, and also about PERL frameworks like Dancer and Catalyst. But want to do in old fashioned way, so that I can learn about how things works.