Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q1734 How can I display something on the page if JavaScript is disabled without first testing from another page?

You are here: irt.org | FAQ | JavaScript | General | Q1734 [ previous next ]

Use the noscript tag, for example:

<html>

<head>
<title>first disable JavaScript</title>
</head>

<body>

<noscript>
<form action="http://www.mozilla.org">
<input type="submit" value="go"
</form>
</noscript>

</body>

</html>

Feedback on 'Q1734 How can I display something on the page if JavaScript is disabled without first testing from another page?'

©2018 Martin Webb