Skip to content

Instantly share code, notes, and snippets.

@ykessler
Created October 23, 2022 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ykessler/52f8af9877a216a9169c9704b57ebf9e to your computer and use it in GitHub Desktop.
Save ykessler/52f8af9877a216a9169c9704b57ebf9e to your computer and use it in GitHub Desktop.
Two jQuery shortcuts you know you want
(function($){
$.fn.id = function() {
return $(this).attr('id');
};
$.fn.name = function() {
return $(this).attr('name');
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment