aboutsummaryrefslogtreecommitdiffstats
path: root/src/event/eventTest.js
Commit message (Collapse)AuthorAgeFilesLines
* Reorganzing the jQuery source (first phase).John Resig2007-09-081-194/+0
|
* Integration of Mike Alsup's excellent form serialization code. The benefits ↵John Resig2007-09-051-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 Resig2007-09-031-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 Resig2007-08-301-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 Resig2007-08-301-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 Aaron2007-07-211-1/+8
|
* broken test in IEBrandon Aaron2007-07-201-13/+11
|
* Tweaked some of the tests, added in events and fx tests.John Resig2007-07-091-10/+5
|
* unbind handlers with data + test (#935)Brandon Aaron2007-04-241-4/+8
|
* Don't pass handler function as data for events + test (#1140)Brandon Aaron2007-04-241-5/+10
|
* Adding back modified test for #939Brandon Aaron2007-04-221-2/+20
|
* Use DOM 2 event handlers, do not trigger click on a tags and event.data no ↵Brandon Aaron2007-04-221-36/+12
| | | | longer global
* Cleaned up a lot of the test suite - reorganized and renamed tests. Added a ↵John Resig2007-03-251-66/+75
| | | | new triggerEvent() method to the test runner to help us better test actual event interactions.
* Added test for #815Jörn Zaefferer2007-03-251-0/+7
|
* Added test for #935Jörn Zaefferer2007-03-251-0/+11
|
* Added test for #939Jörn Zaefferer2007-03-251-1/+13
|
* Added a not-yet-failing testcase for #1054Jörn Zaefferer2007-03-251-3/+4
|
* Added a not-yet-failing testcase for #1054Jörn Zaefferer2007-03-251-0/+14
|
* Cleaned up how event removing was handled. All expandos are now removed when ↵John Resig2007-03-011-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 #964Brandon Aaron2007-02-251-1/+5
|
* Fixed toggle() test to exclude konquererJörn Zaefferer2007-02-051-2/+2
|
* Exclude Opera from toggle test, too (#863)Jörn Zaefferer2007-01-231-2/+2
|
* Removed another log statement; fixed add(Array) for IE (IE reports ↵Jörn Zaefferer2007-01-231-1/+1
| | | | form.elements.nodeName == "FORM")
* Modified toggle() test to stop IE from browsing to another site, problem not ↵Jörn Zaefferer2007-01-231-3/+7
| | | | solved
* Implemented, tested and documented #202Jörn Zaefferer2006-12-281-0/+43
|
* Testsuite 2.0Jörn Zaefferer2006-11-181-0/+11