Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix for bug #959, maintaining a list of event handlers on the 'events' ↵ | John Resig | 2007-02-18 | 1 | -12/+12 |
| | | | | property was causing problems with elements whom had that ID. | ||||
* | Fix for #849 | Brandon Aaron | 2007-02-07 | 1 | -1/+1 |
| | |||||
* | Fixed toggle() test to exclude konquerer | Jörn Zaefferer | 2007-02-05 | 1 | -2/+2 |
| | |||||
* | Fixed docs for trigger, describing the second argument. | Jörn Zaefferer | 2007-01-31 | 1 | -1/+11 |
| | |||||
* | 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 | ||||
* | Refactored the trigger code a little bit. | John Resig | 2007-01-22 | 1 | -17/+18 |
| | |||||
* | You had to have an event bound in order to trigger an event - which is not ↵ | John Resig | 2007-01-22 | 1 | -1/+2 |
| | | | | necessarily the case. | ||||
* | Triggered event handlers are only executed once now. | John Resig | 2007-01-22 | 1 | -2/+10 |
| | |||||
* | Quick code optimization in trigger. | John Resig | 2007-01-22 | 1 | -7/+5 |
| | |||||
* | Converted a lot of for loops to use jQuery.each() instead. | John Resig | 2007-01-14 | 1 | -4/+6 |
| | |||||
* | Added in jQuery.isFunction(). | John Resig | 2007-01-14 | 1 | -1/+1 |
| | |||||
* | Added a fix for triggered events not being cancellable. (You couldn't return ↵ | John Resig | 2007-01-13 | 1 | -8/+7 |
| | | | | false to stop a .submit(), for example.) | ||||
* | Removed unnecessary uses of typeof undefined. | John Resig | 2007-01-12 | 1 | -1/+1 |
| | |||||
* | Modified ready to event to pass jQuery object, allowing users to avoid the ↵ | Jörn Zaefferer | 2007-01-10 | 1 | -2/+15 |
| | | | | ugly custom alias pattern, added examples to both ready(Function) and $(Function) | ||||
* | Moved event object docs to wiki | Jörn Zaefferer | 2007-01-09 | 1 | -97/+0 |
| | |||||
* | Removed duplicated show/hide/toggle, added test for toggle(), started ↵ | Jörn Zaefferer | 2007-01-09 | 1 | -0/+97 |
| | | | | documentation of event properties/methods | ||||
* | Reorganized the different effects to be in fx.js, instead of jquery.js - and ↵ | John Resig | 2007-01-07 | 1 | -23/+17 |
| | | | | cleaned up some of the documentation. | ||||
* | Improved the categories of a bunch of docs, upped the version to 1.1. | John Resig | 2007-01-07 | 1 | -25/+25 |
| | |||||
* | Converted instances of new function(){ ... } to use jQuery.each(...) ↵ | John Resig | 2007-01-06 | 1 | -209/+3 |
| | | | | instead. Also, removed unnecessary documentation for trigger functions (.mouseup()!?). | ||||
* | Merged the three unbind docs into one, added a few more (optional) hints; ↵ | Jörn Zaefferer | 2007-01-04 | 1 | -25/+13 |
| | | | | Use one() instead of bind() for unload | ||||
* | Added back the check for safari before checking target.nodeType, IE fails ↵ | Jörn Zaefferer | 2007-01-03 | 1 | -1/+1 |
| | | | | otherwise | ||||
* | It's now possible to trigger default events like .click(), .submit(), ↵ | John Resig | 2007-01-02 | 1 | -5/+9 |
| | | | | .focus(), etc. Using the jQuery event trigger. | ||||
* | Cleaned up a bunch of the event code, removed .oneEvent() and .unEvent(). | John Resig | 2007-01-02 | 1 | -39/+26 |
| | |||||
* | typo, a bit formatting | Jörn Zaefferer | 2007-01-01 | 1 | -534/+534 |
| | |||||
* | Fix for #504 | Brandon Aaron | 2006-12-31 | 1 | -5/+15 |
| | |||||
* | Moved all the relevant event-related code into the event module. | John Resig | 2006-12-31 | 1 | -0/+313 |
| | |||||
* | Removed documentation for oneXXX and unXXX methods (not yet implementation), ↵ | Jörn Zaefferer | 2006-12-30 | 1 | -840/+2 |
| | | | | added implementation for one() | ||||
* | Implemented, tested and documented #202 | Jörn Zaefferer | 2006-12-28 | 1 | -0/+43 |
| | |||||
* | Fix for #689 | Jörn Zaefferer | 2006-12-24 | 1 | -6/+8 |
| | |||||
* | Improved docs for blur() and focus(), mentioning the difference between ↵ | Jörn Zaefferer | 2006-12-20 | 1 | -1/+7 |
| | | | | calling the jQuery method and the DOM method | ||||
* | Fix for #468 | Jörn Zaefferer | 2006-12-19 | 1 | -0/+1 |
| | |||||
* | Fixed docs for #134 | Jörn Zaefferer | 2006-12-11 | 1 | -6/+10 |
| | |||||
* | Fix for #474 | Jörn Zaefferer | 2006-12-11 | 1 | -1/+1 |
| | |||||
* | Testsuite 2.0 | Jörn Zaefferer | 2006-11-18 | 2 | -51/+11 |
| | |||||
* | Fix for #181 | Brandon Aaron | 2006-11-15 | 1 | -5/+6 |
| | |||||
* | Fix to prevent potential memory leak, dunno if that actually helps | Jörn Zaefferer | 2006-10-27 | 1 | -0/+1 |
| | |||||
* | Modified onexxx handlers to unbind themselve when executed; Reintroduced ↵ | Jörn Zaefferer | 2006-10-27 | 1 | -14/+9 |
| | | | | event fixes (and added some more comments) | ||||
* | Rolled back Joern's changes. They've been moved to another branch, and will ↵ | John Resig | 2006-10-26 | 1 | -4/+16 |
| | | | | be merged for 1.1. | ||||
* | Fixed and improved jQuery's event system: The target property of the event ↵ | Jörn Zaefferer | 2006-10-26 | 1 | -16/+4 |
| | | | | object is now fixed (IE and Safari), bind() accepts now a third parameter "amount" to run the function only the specified number of times, oneclick etc. uses this new bind - it removes the handler when it is not necessary anymore, therefore providing better performance, see accordion for test/demo ( http://joern.jquery.com/accordion/accordion.html ) | ||||
* | Fixed all warnings generated when javascript.options.strict is enabled in ↵ | John Resig | 2006-10-15 | 1 | -1/+1 |
| | | | | Firefox about:config. | ||||
* | Fixed a bunch of endline issues.1.0.2 | John Resig | 2006-10-10 | 1 | -1667/+1667 |
| | |||||
* | Removed (hopefully) all references to $ within the jQuery code itself | Jörn Zaefferer | 2006-10-06 | 1 | -1/+1 |
| | |||||
* | Fixed bug #222 (again) | Jörn Zaefferer | 2006-10-06 | 1 | -1/+1 |
| | |||||
* | Fixed bug #225 again | Jörn Zaefferer | 2006-10-03 | 1 | -1/+4 |
| | |||||
* | Added * You can have as many $(document).ready events on your page as you like. | Jörn Zaefferer | 2006-10-03 | 1 | -0/+2 |
| | |||||
* | Added fix for bug #222 | Jörn Zaefferer | 2006-10-01 | 1 | -1662/+1662 |
| | |||||
* | Marked load() as private, won't work anyway | Jörn Zaefferer | 2006-10-01 | 1 | -0/+4 |
| | |||||
* | Removed event test for load; Added fix for bug #225 | Jörn Zaefferer | 2006-09-30 | 1 | -2/+12 |
| |