From: Justin Meyer Date: Wed, 13 Oct 2010 14:38:29 +0000 (-0400) Subject: beforedeactivate will fire before focusout - use that to our advantage when working... X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=f3d610e06499192509f482dbb72a1edf861827e0 beforedeactivate will fire before focusout - use that to our advantage when working with the change event. --- diff --git a/src/event.js b/src/event.js index d830c4d..fb5a3ef 100644 --- a/src/event.js +++ b/src/event.js @@ -792,6 +792,8 @@ if ( !jQuery.support.changeBubbles ) { filters: { focusout: testChange, + beforedeactivate: testChange, + click: function( e ) { var elem = e.target, type = elem.type;