i have a alot of functionality implemented through javascript if at any stage the javascript is disabled he should be redirected to another page. mentioning him to enable the javascript and then proceed.
and this functionality should be cross browser compatable
Regard,
i have a alot of functionality implemented through javascript if at any stage the
Share
Use
<noscript> tag to check whether JavaScript is enabled or not.<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.google.com/">will redirect it to the specified url.Here in this example it will redirect to the google.Here is an example.