Skip to content

Instantly share code, notes, and snippets.

@karlazz
Created November 29, 2014 00:24
Show Gist options
  • Select an option

  • Save karlazz/aff9c80aa804c12d0f60 to your computer and use it in GitHub Desktop.

Select an option

Save karlazz/aff9c80aa804c12d0f60 to your computer and use it in GitHub Desktop.
Create an event handler for jquery from viralpatel.net
(function ($) {
$.each(['show', 'hide'], function (i, ev) {
var el = $.fn[ev];
$.fn[ev] = function () {
this.trigger(ev);
return el.apply(this, arguments);
};
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment