This <noscript> element displays message when:
<noscript> |
Yes | Yes | Yes | Yes | Yes |
In HTML 4.01, the <noscript> tag can only be used inside the <body> element.
In HTML5, the <noscript> tag can be used both inside <head> and <body>.
None.
A demo showing how to use <noscript> tag.
<html>
<head>
<script language="JavaScript">
<!--from ww w. j a v a2 s. c o m-->
function name() {
commands
}
</script>
<noscript>Your browser doesn't support script codes.</noscript>
</head>
<body>
</body>
</html>