Skip to content

Instantly share code, notes, and snippets.

@taniarascia
Created July 16, 2015 20:49
Show Gist options
  • Select an option

  • Save taniarascia/45887f5c8bcaa3ba3e26 to your computer and use it in GitHub Desktop.

Select an option

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