in reply to Verifying Javascript is enabled
If you are calling the script from a form, include this:
Then check for the value of the field use_js in your Perl script.# in the form <form name="this_form" ...etc... > <input type="hidden" name="use_js" value=""> # elsewhere (after form, or call as onLoad in body tag) <script language="javascript"> document.this_form.use_js.value = "yes" </script>
A similar result can be achieved through query string info if it's a link instead.
.02
cLive ;-)
|
|---|