HOW TO handle users who disable Javascript in their browser
Gilbert Hadley has a ingenious way to handle users who may disable Javascript in their browser while accessing a website in which Javascript functionality is required -
<noscript>
<meta http-equiv="REFRESH" content="0;URL=error-no-javascript.html">
</noscript>
This method or a variation is much better than the Hidden Form variable method blogged earlier.
<noscript>
<meta http-equiv="REFRESH" content="0;URL=error-no-javascript.html">
</noscript>
This method or a variation is much better than the Hidden Form variable method blogged earlier.
This solution does not validate.
ReplyDeleteTrue. It does not XHTML validation.
ReplyDeleteThis is more of a hack.