What is the noscript tag?

June 5th, 2010 | Javascript

The noscript tag allows browsers without javascript support to show an alternative html content. To use, insert the noscript tag inside the body of the document.

<body>
<script type="text/javascript">
document.write('Javascript is enabled.');
</script>
<noscript>
Javascript is not enabled.
</noscript>
</body>