-2

i want know javascript is disabled by browser if yes than how can i enabled.

Parth Chavda
  • 1,819
  • 1
  • 23
  • 30
  • Search before posting, please. That's not only the rule on SO, it's been the rule on every other Q&A site, every support forum, every BBS, for pushing 30 years. – T.J. Crowder Feb 11 '14 at 09:02

2 Answers2

1

for enabling javascript

refer http://enable-javascript.com/

or to check

<script type="text/javascript">
 window.location.href = 'page-with-javascript.html';
</script>

if the user has javascript enabled, they'll immediately be taken to the javascript friendly version.

Avinash Garg
  • 1,374
  • 14
  • 18
1

Use <noscript> tag to set your server side validation.

refer : https://developer.mozilla.org/en-US/docs/Web/HTML/Element/noscript

Chen-Tsu Lin
  • 22,876
  • 16
  • 53
  • 63