Skip to content

Instantly share code, notes, and snippets.

@maxhodak
Created February 10, 2013 15:22
Show Gist options
  • Save maxhodak/4749917 to your computer and use it in GitHub Desktop.
Save maxhodak/4749917 to your computer and use it in GitHub Desktop.
<button id="myid">I am a button!</button>
$(document).ready(function() {
$('#myid').click(function() {
// this gets called when you click button#myid
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment