jeresig
|
a45372a4c5
|
Adding in .bind(name, false), .unbind(name, false) support - an easy way to just stop bubbling and the default action on an element. Fixes #6188.
|
2010-02-27 09:02:13 -05:00 |
|
jeresig
|
ba7195e3f9
|
Make it so that you can pass in event data to .click(), et. al. Fixes #6187.
|
2010-02-26 20:01:19 -05:00 |
|
jeresig
|
9e06903a99
|
Make sure that undefined is always returned for undefined data properties. Fixes #6166.
|
2010-02-26 12:35:04 -05:00 |
|
jeresig
|
7f5179b654
|
Make sure that unbinding on a plain javascript object works correctly. Fixes #6184.
|
2010-02-26 11:32:12 -05:00 |
|
jeresig
|
26b0e913dd
|
Make sure that live events bubble unless explicitly told not to, like a normal event. Fixes #6182.
|
2010-02-26 09:26:14 -05:00 |
|
jeresig
|
437ddb931d
|
No need to run trim on every class iteration in addClass, thanks for the heads-up Leeoniya.
|
2010-02-13 14:30:27 -05:00 |
|
jeresig
|
053af95294
|
Adapt the nbsp entity test for Opera (output isn't as important as the fact that it's getting converted.
|
2010-02-13 07:05:39 -05:00 |
|
jeresig
|
da966573c3
|
Make sure that elements that have been removed also have their special events cleaned up. Fixes #6084.
|
2010-02-13 06:10:43 -05:00 |
|
jeresig
|
dd5c26304a
|
Make sure that live focus and blur events also bind to the regular events, to handle triggered events. Fixes #6055.
|
2010-02-13 05:37:17 -05:00 |
|
jeresig
|
c1ac9fdf45
|
Don't inject style elements using innerHTML as they will go away in IE. Fixes #5977.
|
2010-02-13 03:30:45 -05:00 |
|
jeresig
|
14e1200d59
|
Added some tests to test repeated injected of scripts. Was fixed when fixing #5094.
|
2010-02-13 03:25:27 -05:00 |
|
jeresig
|
99e7560808
|
Make sure that we don't try to use a detached node (that was in a fragment) as a fragment in IE. Fixes #5829.
|
2010-02-13 03:14:00 -05:00 |
|
jeresig
|
726fda08be
|
Make sure the fragment isn't used if it's not the same set we're working with. Fixes #6068.
|
2010-02-13 02:49:04 -05:00 |
|
jeresig
|
abcc1a76ee
|
If .attr() is run on no elements undefined should be returned (as should be the case when no attribute is found). Fixes #6012.
|
2010-02-13 02:23:38 -05:00 |
|
jeresig
|
83a044f1b5
|
Make sure that no extra whitespace is leftover after an addClass. Fixes #6050.
|
2010-02-13 02:18:38 -05:00 |
|
jeresig
|
94d925cd46
|
Make sure leading whitespace is trimmed for parseJSON. Fixes #6031.
|
2010-02-13 02:14:23 -05:00 |
|
John Resig
|
021b809ace
|
Make sure that the teardown is called after all the handlers of a type are removed. Fixes #6065.
|
2010-02-11 01:42:51 -05:00 |
|
Ben Alman
|
3c5b1ca03b
|
Ok, this should actually fix #6041 :)
|
2010-02-06 11:46:44 +08:00 |
|
jeresig
|
d743899971
|
Make sure that &#...; entities are encoded properly. Fixes #6042.
|
2010-02-05 19:58:08 -05:00 |
|
jeresig
|
54bd004e53
|
Make sure that we don't try to double-encode params using the traditional style. Fixes #6041.
|
2010-02-05 19:43:31 -05:00 |
|
jeresig
|
be2407e233
|
Rewrote the live event handling to use the new event logic. Also added in support for live namespaced events. Fixes #5945.
|
2010-02-04 21:36:32 -05:00 |
|
jeresig
|
104757705a
|
Added some more tests for checking the execution order of events (from last night's changes - routes around Chrome's busted object looping abilities).
|
2010-02-04 09:23:50 -05:00 |
|
Justin Meyer
|
e177465a6b
|
Forgot to land Justin's tests for the event fixes.
|
2010-02-04 00:49:46 -05:00 |
|
jeresig
|
e7912805d6
|
A large refactor of the event handling logic. Data and namespace information is maintained in a separate object now, no longer on the event handler. Proxy functions are no longer needed, as a result. Additionally execution order of the handlers is maintained, fixing #4261, and the execution of handlers is maintained even while they're being removed. Live events will be refactored separately.
|
2010-02-04 00:20:52 -05:00 |
|
Neeraj Singh
|
532bec4c69
|
Adding in some more replaceWith tests for #5917.
|
2010-02-01 21:53:31 -05:00 |
|
Noah Sloan
|
8660ea1ab6
|
Only detach the incoming elements to replaceWith if they're DOM nodes. Fixes #5986.
|
2010-02-01 21:48:05 -05:00 |
|
jeresig
|
e76ba32ceb
|
Make sure the resulting className from removeClass is nicely trimmed. Fixes #5988.
|
2010-02-01 21:33:58 -05:00 |
|
jeresig
|
f95147f465
|
Fix for problem in IE 8 where deserialized (then reserialized) form markup was getting malformed. Thanks IE. Fixes #5998.
|
2010-02-01 21:26:47 -05:00 |
|
jeresig
|
31432e048f
|
Add .delegate() and .undelegate(). An alternative to using .live() which goes from a single root and filters by the specified selectors. Should be used like do: .delegate(td, hover, someFn);. Fixes #6005.
|
2010-02-01 18:06:03 -05:00 |
|
jeresig
|
b8076a914b
|
Landing some minor perf optimization to jQuery().
|
2010-01-28 17:17:51 -05:00 |
|
jeresig
|
0252b78201
|
Provide a way to simulate default browser actions. Fixes #5973.
|
2010-01-28 14:34:09 -05:00 |
|
jeresig
|
eed69eccc5
|
Make sure that jQuery.data( elem ) always returns a data object, fixes #5971. Improve the performance of .bind() and .unbind(), fixes #5972.
|
2010-01-28 14:12:44 -05:00 |
|
jeresig
|
0b3165fd23
|
Make sure that the correct context is being passed in for replaceWith(fn). Fixes #5798.
|
2010-01-25 19:22:28 -05:00 |
|
jeresig
|
9f17e70ae9
|
Make work wrapInner(fn) work consistently. Fixes #5799.
|
2010-01-25 19:16:23 -05:00 |
|
Mike Alup
|
ca90ffb332
|
Provided detailed message for JSON parse errors. Fixes #4435.
|
2010-01-25 18:48:52 -05:00 |
|
Michael Monteleone
|
bed759c95c
|
Make sure that checked state is cloned properly. Based upon the patch by Michael, required better test cases and in doing so found more edge cases. Introduced a new check into jQuery.support as a result. Fixes #5929.
|
2010-01-25 18:43:33 -05:00 |
|
jeresig
|
390186b902
|
Make sure that special.add actually copies over event namespaces and data. Fixes #5779 and #5834.
|
2010-01-25 17:01:07 -05:00 |
|
jeresig
|
0474917c9d
|
Make sure multiple bound events have their namespaces and data maintained. Fixes #3549.
|
2010-01-25 16:45:39 -05:00 |
|
jeresig
|
e01ff6cda1
|
Cleaned up divs that should've been removed after a test run.
|
2010-01-25 15:18:51 -05:00 |
|
jeresig
|
d24443fb55
|
Make sure that it's possible to preventDefault natively-triggered (submit, focus, blur, click) events. Fixes #5695.
|
2010-01-25 13:45:07 -05:00 |
|
John Resig
|
1a14a38ff7
|
Make sure original context is maintained and not the deep extended one. Fixes #5924.
|
2010-01-25 01:08:24 -05:00 |
|
John Resig
|
f91b944cab
|
Objects with length properties weren't getting serialized properly by jQuery.param(). Fixes #5862.
|
2010-01-25 00:46:03 -05:00 |
|
John Resig
|
c639405c4d
|
Don't set the context in .load() as it stops the global ajax events from firing. Fixes #5922.
|
2010-01-24 21:58:32 -05:00 |
|
John Resig
|
6a3d0996ed
|
Make sure that XHTML-style HTML is purified in .html(). Fixes #5845.
|
2010-01-24 21:37:05 -05:00 |
|
jeresig
|
f06e0e5575
|
Expose cleanData, make sure that all bound event handlers are properly cleaned up after html/empty/remove. Fixes #5856 and #5906.
|
2010-01-23 21:20:19 -05:00 |
|
jeresig
|
4f9aa62a85
|
Added in .height(fn) and .width(fn) support. Fixes #5915.
|
2010-01-23 20:49:59 -05:00 |
|
jeresig
|
781fe8b80d
|
Make empty strings (and other non-string values) simply return null from parseJSON. Also added some parseJSON tests. Fixes #5859.
|
2010-01-23 17:08:26 -05:00 |
|
jeresig
|
ea9e0ed841
|
Moved add() tests from core to traversing.
|
2010-01-23 16:54:24 -05:00 |
|
jeresig
|
3e286440d5
|
Make sure that .die() with no args works. Fixes #5789.
|
2010-01-23 16:37:12 -05:00 |
|
Karl Swedberg
|
2c28f229e5
|
fixed offset(coordinates) returns null when no matching elements in jQuery object (fixes ticket #5888)
|
2010-01-24 01:26:35 +08:00 |
|