Skip to content

Instantly share code, notes, and snippets.

@sinebeef
Created June 12, 2019 16:51
Show Gist options
  • Save sinebeef/df989d540d2b8ef44b39224e962799d1 to your computer and use it in GitHub Desktop.
Save sinebeef/df989d540d2b8ef44b39224e962799d1 to your computer and use it in GitHub Desktop.
jQuery Cheat Sheet
(function ($) {
$(document).ready(function () {
console.log("ready!");
$('.left').on("click", function (e) {
e.preventDefault();
console.log('moo');
});
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment