in reply to Re^2: jQuery and Perl
in thread jQuery and Perl

"having Perl scripts generate all those pages would be messy anyway, let alone trying to incorporate jQuery as well."

Yeah, that's why I use HTML::Template, it's pretty much the same as having a standard HTML file with the exception that you can populate (via non HTML, HTML::Template specific tags) the HTML/JavaScript/jQuery/css from from Perl, in my case, our Oracle databases. Perhaps overkill for what you are working on, but I'd suggest looking at a templating system, see Framework, Templating, and Content Management Systems from the tutorials section for further reading.

Best of luck

Martin

Replies are listed 'Best First'.
Re^4: jQuery and Perl
by sierpinski (Chaplain) on May 27, 2010 at 16:14 UTC
    Thanks, I'll definitely check out HTTP::Template. I hadn't really looked at it before, but from what you said, sounds exactly like what I need to save quite a bit of time and effort.