aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* Make .add() take an optional context and - if a context is specified in the r...John Resig2009-11-071-3/+3
* Comment nodes are discarded from a merge, for no apparent reason. Fixes #5438.John Resig2009-11-071-13/+2
* jQuery.ajax modified the passed-in object only to help test the code - this s...John Resig2009-11-071-1/+1
* Make sure that document.body exists, at least, in IE before the ready event i...John Resig2009-11-071-1/+2
* The complete event wasn't getting called on local file 404s. Thanks to 'mrspe...John Resig2009-11-071-0/+2
* Fixed the case where getComputedStyled was assumed to exist if getBoundingCli...John Resig2009-11-071-2/+2
* Consistant splits using " " instead of ","visionmedia2009-10-272-4/+4
* Pull in the Sizzle library dynamically using a submodule and make it part of ...John Resig2009-10-263-1007/+6
* Moved a bunch of methods out of the jQuery-specific Sizzle code into more-app...John Resig2009-10-266-66/+75
* Removed the revision info and fixed the date pull to work against git log ins...John Resig2009-10-231-1/+0
* Fixed the cleaning method to support namespaced elements. Thanks to einaros f...John Resig2009-10-121-2/+2
* Fixed == change in ready.John Resig2009-10-081-1/+2
* Adding in .unwrap() support, thanks to Ben Alman! Fixes #5191.John Resig2009-09-251-0/+8
* A follow-up to [6578] (which stopped adding expandos to elements that didn't ...John Resig2009-09-255-41/+56
* Getting $.param working well; Patch by ben_almanYehuda Katz2009-09-171-24/+37
* Probably not the optimal solution, but tests pass.Yehuda Katz2009-09-161-1/+37
* jquery event: closes #5250. bind(), unbind() and one() support Object Literal...Ariel Flesler2009-09-161-0/+25
* data should not add expando unless actually adding dataBrandon Aaron2009-09-151-14/+24
* Missing a var on a for loop, caused a variable to be leaked.John Resig2009-09-151-1/+1
* Missing a var on a for loop, caused a variable to be leaked.John Resig2009-09-151-1/+1
* offset is now a setterBrandon Aaron2009-09-151-6/+37
* fixed global variables introduced in for loop with missing var-keyword (detec...Jörn Zaefferer2009-09-151-1/+1
* jquery attributes: closes #5234. attr() supports jQuery.fn methods.Ariel Flesler2009-09-151-0/+4
* Adding some fixes for commit [6537]. If there's leading whitespace, or if an ...John Resig2009-09-151-6/+12
* jquery ajax: addition for #2452. Wasn't working correctly in some cases.Ariel Flesler2009-09-151-2/+2
* Fix for SVN rev [6537]. Events weren't being unbound correctly in Internet Ex...John Resig2009-09-151-3/+2
* jquery ajax: closes #2452. get() and post() weren't shifting all arguments co...Ariel Flesler2009-09-151-1/+4
* jquery ajax: closes #4994. Adding 'context' setting to $.ajaxAriel Flesler2009-09-151-14/+18
* avoid creating a new data cache if we don't need one. Also, short-circuit the...Yehuda Katz2009-09-151-9/+14
* jquery data: adding missing semicolonsAriel Flesler2009-09-151-3/+3
* Make jQuery.winnow a local functionYehuda Katz2009-09-151-3/+3
* jquery fx: closes #2542. show/hide(0, fn) wasn't calling the callback. Ariel Flesler2009-09-151-2/+2
* Another fix for [6537] - make sure that .innerHTML isn't used on non-HTML doc...John Resig2009-09-141-2/+2
* Fixed a bug introduced in SVN rev [6537] that caused XML-based fragment creat...John Resig2009-09-141-2/+6
* jquery event: misc removalAriel Flesler2009-09-141-6/+2
* jquery data: closes #5224. Exposing the expando.Ariel Flesler2009-09-141-0/+2
* Added support for .before(), .after(), and .replaceWith() on disconnected DOM...John Resig2009-09-141-7/+25
* jquery event: fixes #4989. blur and focus events now bubble and can be handle...Ariel Flesler2009-09-141-2/+33
* fix for #5198, event memory leak limited to IE only via conditional compilationBrandon Aaron2009-09-141-2/+2
* fix for #5017Brandon Aaron2009-09-141-1/+1
* jquery ajax: Misc renameAriel Flesler2009-09-141-3/+3
* jquery core: Fixed #5202. Fixing selector generation when a manipulation func...Ariel Flesler2009-09-141-2/+1
* jquery core: removing the body optimization, as it is then handled by $("TAG").Ariel Flesler2009-09-141-5/+0
* jquery core: commenting the new access function.Ariel Flesler2009-09-111-0/+6
* jquery core: Closes #5189. Added a generic function to handle getting/setting...Ariel Flesler2009-09-093-71/+33
* jquery core: fixes 5187. getElementsByTagName optimization was breaking $('di...Ariel Flesler2009-09-091-0/+1
* jquery core: closes #5186. getElementsByTagName optimization was breaking the...Ariel Flesler2009-09-091-2/+2
* Added support for .eq(-N), .first(), and .last(). Fixes #2164 and #4188.John Resig2009-09-091-1/+11
* Optimize jQuery() for the case $("TAG").John Resig2009-09-081-0/+4
* Use the native Array indexOf method if it exists, for jQuery.inArray.John Resig2009-09-081-1/+8