Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I really want to know:

  • Will jQuery work in a javascript disabled browser?
  • If so, why?
share|improve this question

6 Answers

up vote 18 down vote accepted

It will not, jQuery is built on javascript, and is javascript itself.

jQuery (and any other javascript library) is just a bunch of javascript that makes things easier by making the stuff you do 400 times much easier/concise/terse...but it's still all javascript.

share|improve this answer

no... :) jquery is javascript.

share|improve this answer

Since Jquery is a Javascript library (written in Javascript), disabling Javascript automatically disables Jquery..

share|improve this answer

JavaScript is an interpreted language. "Disabling JavaScript" in the Browser disables the JavaScript interpreter. Everything written in JavaScript will be ignored this also applies to jQuery, which is just a piece of JavaScript code.

share|improve this answer

No. jquery is a "javascript" Library.

And you can't drive a car without a car, can you?

share|improve this answer
3  
That's like the worst metaphor ever :) Maybe "Can't drive a Porsche on a bike path" – gnarf May 1 '10 at 19:52
plus one for "you can't drive a car without a car" :D – Shaheer Feb 11 '12 at 21:06
the right metaphor would have been "you can't drive a car without the steering wheel" – erdomester Feb 6 at 21:34

This question sums up exactly why developers new to JavaScript should not just dive straight into a library but learn the fundamentals of JavaScript first.

Watch some of Doug Crockford's videos on the YDN for a start, read a book or two, then you will realise why libraries like JQuery are as good as they are and how to extend them

No it will not work, because it's built using JavaScript

share|improve this answer
11  
“This question sums up exactly why developers new to JavaScript should not just dive straight into a library but learn the fundamentals of JavaScript first.” Ahhhhhhhh-men. – Paul D. Waite Mar 26 '10 at 11:59
1  
That should be Doug Crockford shouldn't it? – ig0774 Mar 26 '10 at 12:05
* winces * edited : ) – Nick Allen Mar 26 '10 at 12:13
3  
But, everyone knows jQuery is coded in pixie dust, has no bugs, solves all browser problems and heals cancer! Surely it can run without JavaScript through sheer force of bloody magic or something?! – bobince Mar 26 '10 at 18:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.