
August 15th, 2001, 04:53 PM
|
|
Contributing User
|
|
Join Date: Jun 2001
Location: Toronto, Ontario, Canada
Posts: 631
Time spent in forums: 7 m 19 sec
Reputation Power: 12
|
|
|
If javascript is disabled, but the script exists in the page:
<script language="javascript">
<!--
-->
</script>
The <!-- --> hide the script from browsers that don't have javascript or don't have it enabled.
If javascript is not enabled or is not supported by the browser, anything between the
<noscript> </noscript>
tags will be processed.
|