Skip to content

Instantly share code, notes, and snippets.

@gooberling
Created February 26, 2013 10:50
Show Gist options
  • Save gooberling/5037631 to your computer and use it in GitHub Desktop.
Save gooberling/5037631 to your computer and use it in GitHub Desktop.
Create your own function and then reuse that
(function ($) {
$.fn.highlight = function () {
$(this).css({ color: 'red', background: 'yellow' });
$(this).fadeIn();
};
$('.element').highlight();
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment