Skip to content

Instantly share code, notes, and snippets.

@M-Drummond
Created February 17, 2016 03:00
Show Gist options
  • Save M-Drummond/0b21ff990fba2fbe5c39 to your computer and use it in GitHub Desktop.
Save M-Drummond/0b21ff990fba2fbe5c39 to your computer and use it in GitHub Desktop.
jQUery basic click handler
$('button').on('click', function() {
var message = $('<span>Call 1-555-jquery-air to book this tour</span>');
$('.usa').append(message);
$('button').remove();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment