Skip to content

Instantly share code, notes, and snippets.

@goodbedford
Created October 10, 2016 03:54
Show Gist options
  • Save goodbedford/e9a7a6057e4a558e4a354b4710e8b2dc to your computer and use it in GitHub Desktop.
Save goodbedford/e9a7a6057e4a558e4a354b4710e8b2dc to your computer and use it in GitHub Desktop.
Event Listeners
var btn = document.querySelector("#post-button");
var btnJquery = $("#post-button");
var target = document.querySelector("#target");
// vanilla javascript
btn.addEventListener("click", function(event) {
console.log("you clicked the button");
});
// jquery
btnJquery.on("click", function(event) {
console.log("you clicked the jquery version");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment