...
- ...
- ...
- ...
- ...
What is the result of the following code with scripting enabled?
<noscript>
<a href="https://www.mozilla.org/">External Link</a>
</noscript>
<p>Rocks</p>
With scripting enabled, only "Rocks" is displayed.
When scripting is enabled, the content inside the <noscript>
element is ignored by the browser. Therefore, the link to "External Link" is not shown, and only the text "Rocks" is rendered on the page.
<p>Rocks</p>
...
...
...