Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Reorganzing the jQuery source (first phase). | John Resig | 2007-09-08 | 1 | -194/+0 |
| | |||||
* | Integration of Mike Alsup's excellent form serialization code. The benefits ↵ | John Resig | 2007-09-05 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | are as follows: - New method: .serializeArray() This returns an array of name/value pairs representing the contents of a form, or individual input elements. - Enhancement: .serialize() The results are correct now (as opposed to the mess from before), and allows you to serializes forms directly (rather than just the input elements). - Enhancement: .val() This now returns the correct value when dealing wih selects. Additionally, when dealing with multiple selects, it returns an array of values. Based upon Mike's code: http://malsup.com/jquery/form/comp/form.js and test suite: http://malsup.com/jquery/form/comp/test.html | ||||
* | Added namespaced events to bind, unbind, and trigger. This allows you to ↵ | John Resig | 2007-09-03 | 1 | -1/+23 |
| | | | | deal with event handlers of a specific "class" (great for plugins). | ||||
* | Made it so that you can pass in an event object to the trigger data args and ↵ | John Resig | 2007-08-30 | 1 | -6/+24 |
| | | | | it'll override the custom event object (this way you can pass in the event object of a mousemove to a drag event trigger, for example). | ||||
* | Added a new extra fn arg to trigger (so you don't have to simulate the ↵ | John Resig | 2007-08-30 | 1 | -5/+33 |
| | | | | trigger yourself). (Bug #1467) Added a new .triggerHandler() method that allows you to NOT trigger native calls AND returns the response from the handlers. (Bug #873 & #1417) | ||||
* | trigger DOM0 event handlers when doing a trigger (#1363) | Brandon Aaron | 2007-07-21 | 1 | -1/+8 |
| | |||||
* | broken test in IE | Brandon Aaron | 2007-07-20 | 1 | -13/+11 |
| | |||||
* | Tweaked some of the tests, added in events and fx tests. | John Resig | 2007-07-09 | 1 | -10/+5 |
| | |||||
* | unbind handlers with data + test (#935) | Brandon Aaron | 2007-04-24 | 1 | -4/+8 |
| | |||||
* | Don't pass handler function as data for events + test (#1140) | Brandon Aaron | 2007-04-24 | 1 | -5/+10 |
| | |||||
* | Adding back modified test for #939 | Brandon Aaron | 2007-04-22 | 1 | -2/+20 |
| | |||||
* | Use DOM 2 event handlers, do not trigger click on a tags and event.data no ↵ | Brandon Aaron | 2007-04-22 | 1 | -36/+12 |
| | | | | longer global | ||||
* | Cleaned up a lot of the test suite - reorganized and renamed tests. Added a ↵ | John Resig | 2007-03-25 | 1 | -66/+75 |
| | | | | new triggerEvent() method to the test runner to help us better test actual event interactions. | ||||
* | Added test for #815 | Jörn Zaefferer | 2007-03-25 | 1 | -0/+7 |
| | |||||
* | Added test for #935 | Jörn Zaefferer | 2007-03-25 | 1 | -0/+11 |
| | |||||
* | Added test for #939 | Jörn Zaefferer | 2007-03-25 | 1 | -1/+13 |
| | |||||
* | Added a not-yet-failing testcase for #1054 | Jörn Zaefferer | 2007-03-25 | 1 | -3/+4 |
| | |||||
* | Added a not-yet-failing testcase for #1054 | Jörn Zaefferer | 2007-03-25 | 1 | -0/+14 |
| | |||||
* | Cleaned up how event removing was handled. All expandos are now removed when ↵ | John Resig | 2007-03-01 | 1 | -2/+9 |
| | | | | they are no longer needed. Additionally, a bug where all events are unbound if an incorrect event handler is provided, was fixed. | ||||
* | Fix for #964 | Brandon Aaron | 2007-02-25 | 1 | -1/+5 |
| | |||||
* | Fixed toggle() test to exclude konquerer | Jörn Zaefferer | 2007-02-05 | 1 | -2/+2 |
| | |||||
* | Exclude Opera from toggle test, too (#863) | Jörn Zaefferer | 2007-01-23 | 1 | -2/+2 |
| | |||||
* | Removed another log statement; fixed add(Array) for IE (IE reports ↵ | Jörn Zaefferer | 2007-01-23 | 1 | -1/+1 |
| | | | | form.elements.nodeName == "FORM") | ||||
* | Modified toggle() test to stop IE from browsing to another site, problem not ↵ | Jörn Zaefferer | 2007-01-23 | 1 | -3/+7 |
| | | | | solved | ||||
* | Implemented, tested and documented #202 | Jörn Zaefferer | 2006-12-28 | 1 | -0/+43 |
| | |||||
* | Testsuite 2.0 | Jörn Zaefferer | 2006-11-18 | 1 | -0/+11 |