aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* add scrollTop/Left tests and fix for IEBrandon Aaron2009-07-241-76/+43
* Changed .get(-Number) to use .slice() instead of .toArray() (which doesn't ta...John Resig2009-07-231-1/+1
* Fix for incorrect options being selected (noticed same problem with radio/che...John Resig2009-07-231-4/+2
* Make sure that at least one argument is provided to .slice(), in accordance w...John Resig2009-07-233-6/+8
* Optimizing isXMLDoc.John Resig2009-07-221-2/+1
* Support dynamically loaded copies of jQuery using document ready. Fixes #4889.John Resig2009-07-221-0/+6
* Make sure that the script is removed only if it's actually in the page still....John Resig2009-07-221-1/+3
* Tweaked the detach addition in commit [6474].John Resig2009-07-211-5/+7
* Adds detach()Yehuda Katz2009-07-211-7/+10
* Made some syntax tweaks to core.js.John Resig2009-07-191-5/+12
* Saved some references to native methods, instead of re-referencing them on ev...John Resig2009-07-191-5/+7
* Moved some RegExp in core.js, goes toward #4111.John Resig2009-07-191-2/+8
* Moved the RegExp in ajax.js out from inline, goes towards ticket #4111.John Resig2009-07-191-12/+20
* Made a number of syntax tweaks to ajax.js.John Resig2009-07-191-71/+122
* Did some cleaning up of ajax.js and fixed a bug from commit [6457].John Resig2009-07-191-5/+10
* Fixed a typo with commit [6457].John Resig2009-07-191-1/+1
* Removing extraneous closing ). Fix for [6463].John Resig2009-07-191-1/+1
* Broke out some of the inline RegExp from css.js. Goes towards fixing #4111.John Resig2009-07-191-12/+20
* Fixed various formatting issues in css.js.John Resig2009-07-191-23/+39
* Move cases of .replace(re, Function) out from inline (to avoid being redeclar...John Resig2009-07-192-13/+13
* Fixed typo in commit #6461.John Resig2009-07-191-2/+2
* Made more formatting changes to manipulation.js. Also moved all inline RegExp...John Resig2009-07-191-14/+27
* Tweaked formatting of src/manipulation.js.John Resig2009-07-191-28/+40
* Standardize on using .nodeName in place of .tagName. Fixes jQuery bug #4923.John Resig2009-07-195-12/+12
* Standardizing on .test() and .exec() - moving away from using .match() for Re...John Resig2009-07-197-20/+20
* Rewrote .offsetParent() to work against the full jQuery set, added tests. Fix...John Resig2009-07-191-5/+7
* Made a number of stylistic changes to the offset code (braces, declarations, ...John Resig2009-07-191-30/+61
* Switching to use a better check for if the node is a document.John Resig2009-07-181-1/+1
* fix for #4906Brandon Aaron2009-07-171-14/+17
* Add test for jQuery(jQueryObj) cloning and simplify new get() codeYehuda Katz2009-07-171-3/+2
* jQuery objects have a default length of 0. Simplifies $() some.Yehuda Katz2009-07-171-13/+12
* jquery core: Simplifying isEmptyObject() and adding tests.Ariel Flesler2009-07-161-3/+3
* Refactor queueing system to allow auto-dequeuing to use dequeue directly andYehuda Katz2009-07-161-16/+23
* Refactor jQuery.data a bit to reduce property lookupsYehuda Katz2009-07-162-23/+21
* Implemented .data() to get the entire data object. Closes #4284Yehuda Katz2009-07-161-0/+4
* Unify .not and .filter (resolves #4200).Yehuda Katz2009-07-161-23/+26
* jQuery.extend(true, Object, Object) copies custom objects correctly.Yehuda Katz2009-07-161-3/+13
* jQuery.extend(true, Object, Object) copies objects with length keys correctlyYehuda Katz2009-07-161-1/+1
* Add support for .get(-Number) Closes #4188Yehuda Katz2009-07-161-2/+2
* Make toArray an alias for .get(). Closes #3999Yehuda Katz2009-07-161-1/+3
* Scope 'document' locally (also useful for sandboxing). Patch from Andrea Giam...John Resig2009-07-151-0/+3
* We only support wrapping the first element around an element (all others are ...John Resig2009-07-141-1/+1
* Fixed wrapping of elements that hold text nodes. Thanks to David Flanagan for...John Resig2009-07-141-1/+1
* Fixed the handling of .status == 304 in Opera (it always returns 0). Also sil...John Resig2009-07-141-2/+4
* clearQueue and next should now work with default fx on all browsersYehuda Katz2009-07-131-4/+4
* Fix dangling comma of death in data.jsYehuda Katz2009-07-131-1/+1
* Add tests for replaceAll(fn) and wrap(fn) -- mark wrapAll and wrapWithin as TODOYehuda Katz2009-07-121-0/+4
* Support for .foo(Function) and testing. TODO: More testsYehuda Katz2009-07-122-5/+23
* Added test for css(String, Function) and css(Object) where values are Functio...Yehuda Katz2009-07-121-3/+8
* Add clearQueue for clearing non-fx queuesYehuda Katz2009-07-121-1/+4