Sachsentext

Scripts should have a corresponding "noscript" element

Scripts should be followed by a noscripts element to guide the user to content in an alternative way.

Example

Wrong

<script type="text/javascript">document.write("Hello World!")</script>

Right

<script type="text/javascript">document.write("Hello World!")</script><noscript>Hello, World!</noscript>