Hello there In our genreal practice of developing a webpage we use JAVASCRIPT. But do you know what will happen when in clients' browser javascript is disable and in your webpage you used it ?? Nothing will happen as per your expectation. It is good programming practice to check JAVASCRIPT is disabled or not . For example <noscript> <meta http-equiv = "refresh" content = "1;url=error.html" > </noscript> This will redirect to an error page if script is disabled. Just replace error.html with the url of your error page. Or you also can do this <noscript> <blink>Please enable javascript</blink> </noscript>