Skip to content

Instantly share code, notes, and snippets.

@susanahernandezd
Last active June 10, 2019 07:41
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 susanahernandezd/5926369 to your computer and use it in GitHub Desktop.
Save susanahernandezd/5926369 to your computer and use it in GitHub Desktop.
Es lo equivalente al document ready + sustituir jQuery por $
//Document ready + jquery
(function($){
//do something
})(jQuery);
//Document ready
(function(){
//do something
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment