is there any Drupal module to display an alternative page in case Javascript is disabled ?
开发者_开发知识库thanks
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.
精彩评论