Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The jQuery UI library comes in multiple forms:
1) A one-file minified version
2) A one-file non-minified version
3) A multiple file non-minified "development bundle"

I'm interested in the equivalent of the "development bundle" for jQuery. Where can I find it?

share|improve this question
Hi, I am new to jQuery, I found "Development bundle" in the zip file, can I delete it? What is the purpose to have it? – GMsoF Nov 28 '12 at 9:36

1 Answer

up vote 6 down vote accepted

Google CDN hosts a non-minified version of the jQuery library:

https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.js

And github is the home of the:

multiple file non-minified "development bundle"

https://github.com/jquery/jquery

The files you want are in the "src" directory I believe.

share|improve this answer
+1 Good call, I didn't know about this. Gonna bookmark it. :) – 65Fbef05 Aug 23 '11 at 15:52
Thanks, but this is actually not what I'm looking for. The files I'm looking for are called jquery.async.js, jquery.autoEllipsis.js, jquery.checkboxShitfClick.js, jquery.client.js, etc. – Randomblue Aug 23 '11 at 15:55

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.