Possible Duplicate:
How to detect if JavaScript is disabled?
My first web application relies heavily on Javascript and AJAX application.
Other than my Login Page, majority of the pages relies on Javascript and Ajax when submitting data to the server. I have been thinking about this, if user disables his/her javascript then my app does not behave accordingly.
I used this code in my Login page
<NOSCRIPT>
Javascript is required to run this pages. Please turn it on or ask help from techsupport if you dont know how to enable it
</NOSCRIPT>
Although I think not relevant, I used Spring MVC 2.5 and Jquery for the sake of information to all.
Any thoughts how others are able to handle in scenario such as this?