Hi, Will ajax work if javascript is disabled in the browser ? How to check it? what is the use of noscript? What will you do if javascript is disabled in the browser?
If javascript is disabled on the client's browser , then you will have to relay on simple hidden fields and server side validation if that is a form, other wise anything dynamic on the page will not work as well as it should. I guess it all depends on the functionality that you have at that point
You may check if javascript is enabled at client side by creating a cookie with javascaript then test the document.cookie with php if it exists. Noscript tag is used to display alternative text snippet to those visitors who have javascript disabled. Thanks