http://qs1969.pair.com?node_id=213708


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...

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.

print $q->start_html(-title=>'The Riddle of the Sphinx', -script=>{-language=>'JAVASCRIPT', -src=>'/javascript/sphinx.js'} );
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.

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.