Issue:
Detect if JavaScript is disabled when it's disabled. It is hard to run code to detect that code cannot be run...
You can do the reverse though...
Workaround:
Add the following as passthru HTML to display to the user that a form will not work w/o JavaScript enabled:
<p class="pstyle">
<script type="text/javascript">
document.write('JavaScript is enabled');
</script>
<noscript>
Javascript is disabled
</noscript>
</p>
previous page
|