is there any Drupal module to display an alternative page in case Javascript is disabled ?
thanks
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 should always make your website degrade gracefully. Since JavaScript happens on the client side, it is not something that you can check for on your server.
You can with js check if js is enabled and act upon it, but you would have to have the info before the page is displayed, if you want to display an alternative page. With caching etc, this would quickly become quite complex to manage.