views:

72

answers:

3

how to call javascript/jQuery when javascript is disabled in mozilla/ie ?

+4  A: 

If javascript is disabled you cannot use it. It's as simple as that. You can use the <noscript> tag to show some contents to the user if javascript is disabled inciting him to enable it because your site relies on javascript.

Darin Dimitrov
ok,but is it any solution for that??
Hitesh Prajapati
@Hitesh No. The point of disabling Javascript is that no Javascript can run.
Pekka
+1  A: 

If the user disabled Javascript, then it is disabled. Your only option is to display a message on the page saying, "Please enable Javascript."

Ned Batchelder
thats' i am talking. that is any futher soluction to call javascript function?
Hitesh Prajapati
+1  A: 

You can't, it is a user preference. Build on things that work so this isn't a problem.

David Dorward