Possible Duplicate:
How to detect if JavaScript is disabled?
How to find whether javascript is supported by user’s browser or not
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You cannot check using Javascript if the browser is configured to use Javascript because obviously it can’t run:)
So instead you use a
<noscript>tag. This tag will always appear when Javascript is not supported and therefore you can put information within this tag to warn the user to enable Javascript on their browser (if they can).Oh and this is a possible duplicate of : How to detect if JavaScript is disabled?