Skip to content

Instantly share code, notes, and snippets.

@ocmca
Created April 10, 2015 07:34
Show Gist options
  • Save ocmca/c9a0633bd252e0bf26f9 to your computer and use it in GitHub Desktop.
Save ocmca/c9a0633bd252e0bf26f9 to your computer and use it in GitHub Desktop.
jQuery Custom Method Example From http://learn.jquery.com/plugins/basic-plugin-creation/
(function( $ ) {
$.fn.showLinkLocation = function() {
this.filter( "a" ).each(function() {
var link = $( this );
link.append( " (" + link.attr( "href" ) + ")" );
});
return this;
};
}( jQuery )); // Usage example:$( "a" ).showLinkLocation();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment