HTML noscript tag

Example

Use of the <noscript> tag:

<script>
document.write("Hello World!")
</script>
<noscript>Your browser does not support JavaScript!</noscript>

Definition and Usage

The <noscript> tag defines an alternate content to be displayed to users that have disabled scripts in their browser or have a browser that doesn't support script.

The <noscript> element can be used in both <head> and <body>. When used inside <head>, the <noscript> element could only contain <link>, <style>, and <meta> elements.

Browser Support

Element
<noscript> Yes Yes Yes Yes Yes

Global Attributes

The <noscript> tag also supports the Global Attributes in HTML.

Default CSS Settings

None.

Comments