I have Create a ASP.NET MVC Project.and in this project i have used javascript much more.like JQGRID,FullCalender etc.and everything is working fine. Now a Tester Disabled Javascript from Browser and now nothing is working,no jqGrid ,no full Calender etc(JavaScript Functionalty).Now Please suggest how can i achive my javascript functionality. Any Help will be Appreciated.
2 Answers
You can't. Once javascript is disabled in the browser there is nothing that can be done by the developer of the website to re-enable it.
You need to 'code defensively' (also known in the case of javascript as 'progressive enhancement'), by having a backup system in place which allows the user with javascript disabled to still browse the site. For example, with javascript enabled the user can page between tabular data, with it disabled they see all data in a single page.
Alternatively, you should add an advisory warning to the entry page of your site which detects if javascript is disabled and advises people that for full use of your site it is required.
noscript...