HTML <noscript> tag
Usage
Used to define some content to be displayed if the user's browser does not support scripting. This can be used, for example, to alert the user and provide a link to download the required scripting program.
Example
Code:
<script type="text/javascript">
<!--
document.write("Your browser supports JavaScript!")
-->
</script>
<noscript>Your browser doesn't support JavaScript!</noscript>
Output:
Required Attributes
- none
Optional Attributes
- none