...
- ...
- ...
- ...
- ...
What attributes are available for the <noscript>
element?
The <noscript>
element includes only global attributes.
The <noscript>
element does not have any unique attributes of its own. It supports only the global attributes that are common to all HTML elements, such as class
, id
, and style
. These attributes allow for styling and identification of the <noscript>
element within the document.
<noscript class="no-script">
<p>JavaScript is required to view this content.</p>
</noscript>
...
...
...