aboutsummaryrefslogtreecommitdiffstats
path: root/src/event.js
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'fix7762' into jquery master. Fixes #7762.Colin Snover2010-12-301-43/+26
|\
| * Clearing event handlers on unload is no longer necessary in any version of IE...Colin Snover2010-12-261-17/+0
| * Fix whitespace in event.jsColin Snover2010-12-261-26/+26
* | When a native browser event is bubbling up the DOM, make sure that the correc...Dave Methvin2010-12-271-0/+6
|/
* Merge branch 't6398' of https://github.com/jitter/jquery into jitter-t6398John Resig2010-12-061-1/+1
|\
| * Make sure custom events named "submit" can be bound to non DOM elements in IE...Anton M2010-11-211-1/+1
* | Fix for #6911 - prevent disabled elements in liveHandlerdanheberden2010-11-211-2/+2
|/
* Make sure that when multiple variables are being declared that assignments ar...John Resig2010-11-091-9/+19
* We don't do end of line comments, move them above.John Resig2010-11-091-2/+3
* Temporarily backing out commit bd474799bf95f4ecdc47a7577750eaf69e2236d4.John Resig2010-10-251-5/+0
* Prevent IE from firing live/delegate events on disabled elements. (#6911)danheberden2010-10-251-0/+5
* Honor stopImmediatePropagation for live/delegate event handlers. Fixes #7217.dmethvin2010-10-251-0/+3
* Fixes #7229 and #5803rwldrn2010-10-241-0/+3
* beforedeactivate will fire before focusout - use that to our advantage when w...Justin Meyer2010-10-131-0/+2
* Make sure that focusin/focusout bubbles in non-IE browsers.Justin Meyer2010-10-131-4/+9
* Fix patch for #7150, which was not deleting the events object properly on pla...Colin Snover2010-10-121-2/+2
* Use a key name less likely to result in collisions for events on plain JS obj...Colin Snover2010-10-111-7/+11
* Handle some edge cases with binding events to the window object (which is als...John Resig2010-10-111-2/+2
* Make sure that the unload event doesn't leak in IE - use jQuery's binding mec...jeresig2010-10-101-1/+1
* Change event did not fire in IE when an explicit .focus() was used. Fixes #6374.jeresig2010-10-091-1/+4
* Fix the case where live change was breaking if a live click was bound ahead o...jeresig2010-10-091-0/+1
* Set event.LiveFired to undefined in specialSubmit handler so that click event...David Petersen2010-09-301-0/+2
* Using data() on JavaScript objects sets fields directly on the object. Note t...Dave Reed2010-09-291-3/+40
* Fix mis-type in commit e3c4e5789743eecb3cbe2b626f3a5f09c616ee4b. Thanks to @j...John Resig2010-09-281-1/+1
* Tweak the logic for fixing event.which. Fixes #2338.John Resig2010-09-281-2/+2
* If an inline handler returns false, call event.preventDefault(). Fixes #6337.Dave Methvin2010-09-241-0/+1
* Don't copy event.originalTarget, it's a Netscape-specific property. Fixes #2814.dmethvin2010-09-241-1/+1
* Added support for map of events in live, die, delegate and undelegate. Fixes ...Robert Katic2010-09-231-0/+8
* Fix missing var. Thanks to @jeff-themovie for the catch.jeresig2010-09-221-1/+1
* Unify the means of detecting a window across the library. Fixes jQuery UI bug...jeresig2010-09-221-2/+2
* Applied the RegExp issues reported by Jeff Robinson here: http://jmrware.com/...jeresig2010-09-221-11/+11
* No need to set returnValue if preventDefault exists. Thanks kangax for the ca...jeresig2010-09-201-2/+4
* Make sure that the removeEvent and buildFragment private functions are expose...jeresig2010-09-081-2/+2
* Make sure that jQuery works even when the individual modules are loaded separ...jeresig2010-09-081-0/+4
* Expose jQuery.uuid (use with caution) and make sure the expando property is u...John Resig2010-04-241-3/+3
* Made it so that you no longer need to build jQuery in order to run the test s...jeresig2010-03-231-1/+1
* Make sure that special remove and teardown events get called when .die() is u...jeresig2010-03-091-28/+20
* Added in Ben Alman's proposed event.namespace property (the property holds th...jeresig2010-03-021-5/+11
* More changes to get jQuery in line with JSLint.jeresig2010-03-011-9/+9
* Land some additional tweaks related to running through JSLint.jeresig2010-03-011-1/+1
* Made some code tweaks related to running jQuery through JSLint (thanks to Lor...jeresig2010-03-011-5/+5
* No reason to double-bind the beforeunload event. Fixes #6113.jeresig2010-02-271-2/+1
* Merge branch 'master' of github.com:jquery/jqueryjeresig2010-02-271-1/+2
|\
| * Make sure events exist before trying to access them in jQuery.event.handle an...brandonaaron2010-02-271-1/+2
* | Adding in .bind(name, false), .unbind(name, false) support - an easy way to j...jeresig2010-02-271-3/+16
* | Make it so that you can pass in event data to .click(), et. al. Fixes #6187.jeresig2010-02-261-2/+4
|/
* Make sure that unbinding on a plain javascript object works correctly. Fixes ...jeresig2010-02-261-2/+6
* Make sure that the correct type is set for live mouseenter/mouseleave events....jeresig2010-02-261-0/+1
* Make sure that live events bubble unless explicitly told not to, like a norma...jeresig2010-02-261-8/+20
* Make sure that elements that have been removed also have their special events...jeresig2010-02-131-0/+4