Reputation Activity
-
tinimic got a reaction from ajak32 in how to add text alternative to JS incase scripts are disabledThat's what the noscript tag is for:
<html> <body> <script type="text/javascript"> document.write("Hello World!") </script> <noscript>Sorry, your browser does not support JavaScript!</noscript> <p>A browser without support for JavaScript will show the text in the noscript element.</p> </body> </html>