index
:
jquery.git
1.12-stable
2.2-stable
3.6-stable
3.x-stable
dependabot/github_actions/github-actions-6951dec90a
dependabot/github_actions/github-actions-7574396d95
dependabot/npm_and_yarn/rollup-4.22.4
jtr-test
main
jQuery JavaScript Library: https://github.com/jquery/jquery
www-data
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
Commit message (
Expand
)
Author
Age
Files
Lines
*
Make sure that the teardown is called after all the handlers of a type are re...
John Resig
2010-02-11
1
-1
/
+1
*
No reason to expose the temporary _load method.
John Resig
2010-02-11
1
-5
/
+5
*
Simplify the special change/submit event removal logic, per Scott's suggestio...
jeresig
2010-02-10
1
-5
/
+2
*
Updated formatting for the change/submit special event logic. Also switched t...
jeresig
2010-02-08
1
-83
/
+84
*
Merge branch 'master' of github.com:jquery/jquery
jeresig
2010-02-08
2
-3
/
+3
|
\
|
*
Ok, this should actually fix #6041 :)
Ben Alman
2010-02-06
1
-2
/
+2
|
*
spelling mistake (insead)
tomviner
2010-02-06
1
-1
/
+1
*
|
Fix in logic for handling exclusive namespace testing. Fixes #6048.
jeresig
2010-02-08
1
-2
/
+2
|
/
*
Make sure that &#...; entities are encoded properly. Fixes #6042.
jeresig
2010-02-05
1
-1
/
+1
*
Make sure that we don't try to double-encode params using the traditional sty...
jeresig
2010-02-05
1
-1
/
+1
*
Update special events to work with the internal event system changes. Also fi...
jeresig
2010-02-05
1
-15
/
+17
*
Rewrote the live event handling to use the new event logic. Also added in sup...
jeresig
2010-02-04
1
-69
/
+84
*
A large refactor of the event handling logic. Data and namespace information ...
jeresig
2010-02-04
1
-149
/
+142
*
Removed extraneous nodeName check from f95147f465932cb91e1a6aace50c556820ca40...
jeresig
2010-02-01
1
-1
/
+1
*
Only detach the incoming elements to replaceWith if they're DOM nodes. Fixes ...
Noah Sloan
2010-02-01
1
-4
/
+5
*
Make sure the resulting className from removeClass is nicely trimmed. Fixes #...
jeresig
2010-02-01
1
-1
/
+1
*
Fix for problem in IE 8 where deserialized (then reserialized) form markup wa...
jeresig
2010-02-01
1
-1
/
+3
*
Same problem happens with plain embed elements as well. Follow-up fix to #5904.
jeresig
2010-02-01
1
-4
/
+4
*
Make sure that injection of object elements continues to work in IE 6. Really...
jeresig
2010-02-01
1
-2
/
+4
*
Add .delegate() and .undelegate(). An alternative to using .live() which goes...
jeresig
2010-02-01
1
-6
/
+22
*
The context for 'body' should still be document, in this case.
jeresig
2010-01-29
1
-1
/
+2
*
Make sure fragment caching is only happening on nodes in the main document. F...
jeresig
2010-01-29
1
-4
/
+8
*
Skip around inserting a fragment when possible (insert the node directly).
jeresig
2010-01-28
1
-7
/
+13
*
Landing some minor perf optimization to jQuery().
jeresig
2010-01-28
1
-4
/
+12
*
Optimize for the case where a fragment-bound element is being injected into o...
jeresig
2010-01-28
2
-11
/
+20
*
Further optimize the empty/remove/cleanData logic.
jeresig
2010-01-28
3
-40
/
+80
*
Provide a way to simulate default browser actions. Fixes #5973.
jeresig
2010-01-28
1
-2
/
+5
*
Make sure namespaces is always an array, when passed to the remove special. F...
jeresig
2010-01-28
1
-2
/
+5
*
Make sure that jQuery.data( elem ) always returns a data object, fixes #5971....
jeresig
2010-01-28
2
-51
/
+86
*
No reason to limit the initial change data store to just radio elements. Fixe...
jeresig
2010-01-27
1
-4
/
+1
*
Make sure that the correct context is being passed in for replaceWith(fn). Fi...
jeresig
2010-01-25
1
-0
/
+6
*
Make work wrapInner(fn) work consistently. Fixes #5799.
jeresig
2010-01-25
1
-0
/
+6
*
Filtering elements only. Fixed #5920
Robert Katic
2010-01-26
1
-1
/
+1
*
Provided detailed message for JSON parse errors. Fixes #4435.
Mike Alup
2010-01-25
1
-2
/
+5
*
Make sure that checked state is cloned properly. Based upon the patch by Mich...
Michael Monteleone
2010-01-25
2
-4
/
+22
*
Make sure that special.add actually copies over event namespaces and data. Fi...
jeresig
2010-01-25
1
-0
/
+2
*
Make sure multiple bound events have their namespaces and data maintained. Fi...
jeresig
2010-01-25
1
-3
/
+12
*
Make sure that it's possible to preventDefault natively-triggered (submit, fo...
jeresig
2010-01-25
1
-20
/
+32
*
Update the license URL in the header.
jeresig
2010-01-25
1
-1
/
+1
*
Make sure original context is maintained and not the deep extended one. Fixes...
John Resig
2010-01-25
1
-1
/
+1
*
Objects with length properties weren't getting serialized properly by jQuery....
John Resig
2010-01-25
1
-40
/
+41
*
Use alternative technique for triggering an abort, preventing an exception fr...
John Resig
2010-01-24
1
-5
/
+2
*
Don't set the context in .load() as it stops the global ajax events from firi...
John Resig
2010-01-24
1
-3
/
+4
*
Make sure that XHTML-style HTML is purified in .html(). Fixes #5845.
John Resig
2010-01-24
1
-1
/
+3
*
Expose cleanData, make sure that all bound event handlers are properly cleane...
jeresig
2010-01-23
1
-12
/
+11
*
Added in .height(fn) and .width(fn) support. Fixes #5915.
jeresig
2010-01-23
1
-0
/
+7
*
Make empty strings (and other non-string values) simply return null from pars...
jeresig
2010-01-23
1
-10
/
+9
*
Expose the JSON parsing logic. Fixes #5914.
jeresig
2010-01-23
2
-17
/
+23
*
Centralize the logic for throwing exceptions. Fixes #5913.
jeresig
2010-01-23
3
-3
/
+7
*
Make sure that .die() with no args works. Fixes #5789.
jeresig
2010-01-23
1
-3
/
+3
[next]