Skip to content

Instantly share code, notes, and snippets.

@tudormunteanu
Created February 16, 2012 12:47
Show Gist options
  • Select an option

  • Save tudormunteanu/1844610 to your computer and use it in GitHub Desktop.

Select an option

Save tudormunteanu/1844610 to your computer and use it in GitHub Desktop.
jQuery plugin authoring
(function($){
$.fn.myName = function() {
return this.each(function() {
var t = $(this);
});
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment