Skip to content

Instantly share code, notes, and snippets.

@taniarascia
Created July 16, 2015 20:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taniarascia/45887f5c8bcaa3ba3e26 to your computer and use it in GitHub Desktop.
Save taniarascia/45887f5c8bcaa3ba3e26 to your computer and use it in GitHub Desktop.
Call a function with a click event with jQuery
$(function() {
$('.classname').click(function() {
// Calling a function in case you want to expand upon this.
clickFunction();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment