Skip to content

Instantly share code, notes, and snippets.

@nbarthelemy
Created March 19, 2009 20:37
Show Gist options
  • Save nbarthelemy/82042 to your computer and use it in GitHub Desktop.
Save nbarthelemy/82042 to your computer and use it in GitHub Desktop.
jquery apply utility function
(function ($) {
$.extend($.fn, {
apply :function (fn, args) {
return this.each(function () {
fn.apply(this, args);
});
}
});
})(jQuery);
now it can be called like so:
$('#example').apply(function () {
alert(this.id);
});
$('#example').apply(function (a, b) {
alert(a + " : " + b); // "foo : bar"
}, ['foo', 'bar']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment