in reply to Re: Inserting javascript into perl script
in thread Inserting javascript into perl script
Another way to approach it if you're using CGI.pm is like this...
Enter any 47-digit prime number to continue.
SNIP
...which I lifted straight from perldoc CGI.
And little way down is the trick for when you have a lot of js which doesn't change between page displays, that is storing the js in a separate file and including it in a <SCRIPT SRC=...> tag.
This is a GOOD thing for a number of reasons including the fact that it forces you to separate client and server which can be good for debugging weird stuff.print $q->start_html(-title=>'The Riddle of the Sphinx', -script=>{-language=>'JAVASCRIPT', -src=>'/javascript/sphinx.js'} );
Aristotle posted an excellent comment 213336 about the problems of combined js/perl which you should bear in mind. This doesn't menan don't do it but you do need to withe rhave full control of your clients or a way to degrade gracefully if they don't support javascript.
Dingus
Enter any 47-digit prime number to continue.
|
---|
In Section
Seekers of Perl Wisdom