Quote
How do we determine if Javascript is enabled?
Use Javascript.
function javascriptEnabled(){
return true;
}Great if it returns true...and if not:
function validateSettings(){
if(!javascriptEnabled()){
location.href="no_js.htm";
}Hope groovicus doesn't fall out of his chair. And yes...this code is on a production server, up and running.

Help





Back to top












