Skip to content

Instantly share code, notes, and snippets.

@Postnov
Created November 8, 2020 16:23
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 Postnov/7c5ffbef02b3e483de5a0819c98ef882 to your computer and use it in GitHub Desktop.
Save Postnov/7c5ffbef02b3e483de5a0819c98ef882 to your computer and use it in GitHub Desktop.
Создание метода в jQuery (create method in jQuery)
(function($) {
$.fn.myfunction = function() {
console.log('run function');
return this;
};
})( jQuery );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment