-
-
Save cowboy/385142 to your computer and use it in GitHub Desktop.
Bind an event handler and fire it immediately
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* bindAndTrigger - v0.1 - 04/30/2010 | |
* http://benalman.com/ | |
* | |
* http://jsfiddle.net/cowboy/fJnA2/ | |
*/ | |
(function($,undefined){ | |
$.fn.bindAndTrigger = function( all, type, data, callback ) { | |
if ( typeof all !== 'boolean' ) { | |
callback = data; | |
data = type; | |
type = all; | |
all = undefined; | |
} | |
var first = type.split(' ')[0], | |
fn = callback || data; | |
return this | |
.bind( type, data, callback ) | |
.each(function(){ | |
var event = $.Event( first ); | |
fn.call( event.target = this, event ); | |
return !!all; | |
}); | |
}; | |
})(jQuery); |
I used to have a lot of fancy arguments stuff in jQuery Object Utils (predecessor to jQuery getObject) but it ended up being a bit gross. In this particular example, it actually simplified things greatly (imo) to use explicit vars.
One or two if
statements to shift args around might not feel beautiful, but it minifies really small and executes super-fast.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While using
arguments
is slower and uses more code, don't you think it's more readable? Too bad we can't pass named arguments like Python's**kwargs
without relying on passing in a singleargs
object:Which could then be called by traditionally passing in positional arguments:
Or by passing in named arguments in any order:
This could easily be supported by the runtime by just positioning the named arguments and potentially injecting
undefined
. Actually, I think this is better than Python's**kwargs
for a finite set of arguments since named arguments in Python always get assigned to thekwargs
dictionary as far as I know.