Skip to content

Instantly share code, notes, and snippets.

@cmarkle27
Created August 4, 2012 19:10
Show Gist options
  • Save cmarkle27/3259408 to your computer and use it in GitHub Desktop.
Save cmarkle27/3259408 to your computer and use it in GitHub Desktop.
Simple jQuery Plugin
(function($) {
// functions and vars here
var underline = function underline(e) {
$(e.currentTarget).css({ "color" : "yellow" });
};
// --------------------------------------------------------------------
$.fn.simpleOne = function() {
return this.on("hover", underline);
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment