Created
October 23, 2022 15:37
-
-
Save ykessler/52f8af9877a216a9169c9704b57ebf9e to your computer and use it in GitHub Desktop.
Two jQuery shortcuts you know you want
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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