Skip to content

Instantly share code, notes, and snippets.

@kmaida
Created August 27, 2013 18:33
Show Gist options
  • Save kmaida/6357251 to your computer and use it in GitHub Desktop.
Save kmaida/6357251 to your computer and use it in GitHub Desktop.
Create jQuery method
$.fn.methodName = function(){
return this.each(function(index, element){
$(this)
.html('A method was called on me!')
.css('background', 'green');
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment