Noscript to redirect (I need to redirect)
Here is an solution from another post.
<meta http-equiv="refresh" content="0; url=http://example.com/">
You may try this:-
<noscript>
<a href="">Click here to continue</a>
</noscript>
or
<noscript>
<meta http-equiv="refresh" content="0;url=noscript.html">
</noscript>
- Have your landing page be your NON-JavaScript warning page.
- Include a peice of JavaScript called from
onload
to re-direct to your REAL page (where you assume the end-user has JavaScript).