Skip to content

Instantly share code, notes, and snippets.

@mklickman
Last active December 27, 2015 02:19
Show Gist options
  • Save mklickman/7251065 to your computer and use it in GitHub Desktop.
Save mklickman/7251065 to your computer and use it in GitHub Desktop.
// This...
(function($) {
$('body').css('background', 'red');
})(jQuery)
// is the same as this...
var myFunction = function($) {
$('body').css('background', 'red');
}
myFunction(jQuery);
// is the same as this
jQuery('body').css('background', 'red');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment