Noscript

<noscript>: The Noscript element #

::: section-content The <noscript> HTML element defines a section of HTML to be inserted if a script type on the page is unsupported or if scripting is currently turned off in the browser.

Content categoriesMetadata content, flow content, phrasing content.
Permitted contentWhen scripting is disabled and when it is a descendant of the <head> element: in any order, zero or more <link> elements, zero or more <style> elements, and zero or more <meta> elements.
When scripting is disabled and when it isn't a descendant of the <head> element: any transparent content, but no <noscript> element must be among its descendants.
Otherwise: flow content or phrasing content.
Tag omissionNone, both the starting and ending tag are mandatory.
Permitted parentsAny element that accepts phrasing content, if there are no ancestor <noscript> element, or in a <head> element (but only for an HTML document), here again if there are no ancestor <noscript> element.
Implicit ARIA roleNo corresponding role
Permitted ARIA rolesNo role permitted
DOM interfaceHTMLElement
:::

Attributes #

::: section-content This element only includes the global attributes. :::

Examples #

::: section-content ::: code-example [html]{.language-name}

<noscript>
  <!-- anchor linking to external file -->
  <a href="https://www.mozilla.org/">External Link</a>
</noscript>
<p>Rocks!</p>

::: :::

Result with scripting enabled #

::: section-content Rocks! :::

Result with scripting disabled #

::: section-content External Link{target="_blank"}

Rocks! :::

Specifications #

::: _table #

Specification #

HTML Standard
[# the-noscript-element]{.small}


:::

Browser compatibility #

::: _table Desktop Mobile


           Chrome    Edge   Firefox   Internet Explorer   Opera   Safari   WebView Android   Chrome Android   Firefox for Android   Opera Android   Safari on IOS   Samsung Internet

noscript 1 12 1 Yes 15 3 4.4 18 4 14 2 1.0 :::

::: _attribution © 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/noscript{._attribution-link} :::