<noscript>

Browser
  • IE
  • Cr
  • Sf
  • Fx
  • O
Type

The NOSCRIPT element defines a container for non script-based rendering.


<noscript>
alternative content
</noscript>

The content of the NOSCRIPT element is displayed in browsers that do not support JavaScript.

Example


<html>
<head>
<title>TAG index</title>
</head>
<body>


<script type="text/javascript">

document.write('<p>JavaScript can be used.</p>');

</script>

<noscript>
<p>JavaScript cannot be used.</p>
</noscript>


</body>
</html>

Output
Example pagenew window