scripts blocked in body trigger <noscript>
Posted: Sun Mar 15, 2015 2:52 am
In this HTML:
The <noscript> tag is shown when scripts are allowed for the page's domain but the third-party script is blocked.
Code: Select all
<body>
<script src=http://any.blocked.domain.com/foo.js></script>
<noscript>
<h1>Scripts disabled</h1>
</noscript>
<h1>Main content</h1>