The NOSCRIPT area is used to display a message or other contents when the visitor is using a non-JavaScript capable browser. The visitors with JavaScript capable browsers will ignore this area and perform the JavaScript coding.
Example :
The JavaScript capable browser will display a pop-up alert box and ignore the NOSCRIPT area. The non-JavaScript browser will ignore the actual JavaScript area and display the contents within the NOSCRIPT area.
Example :
<html>
<head>
<script type="text/javascript">
<!--
alert ("This is a JavaScript ALERT box.")
// -->
</script>
<noscript>
If you see this message, your browser is not running JavaScript.
</noscript>
</head>
<body>
Main page contents here.
</body>
</html>
<head>
<script type="text/javascript">
<!--
alert ("This is a JavaScript ALERT box.")
// -->
</script>
<noscript>
If you see this message, your browser is not running JavaScript.
</noscript>
</head>
<body>
Main page contents here.
</body>
</html>
The JavaScript capable browser will display a pop-up alert box and ignore the NOSCRIPT area. The non-JavaScript browser will ignore the actual JavaScript area and display the contents within the NOSCRIPT area.

