|
|
HTML <noscript> tag
Syntax
<noscript> - </noscript>
Definition and Usage
The NOSCRIPT element is used to define an alternate content (text) if a
script is not executed.
This tag is used for browsers that recognizes the <script>
tag, but does not support the script in it.
Standard Attributes
| id, class, title, style, dir, lang, xml:lang |
For a full description, go to Standard
Attributes.
Example
| Source |
Output |
<body>
<script type="text/javascript">
</script>
<noscript>Your browser does not support Script</noscript>
</body> |
N/A
|
|
|