Skip to content

Instantly share code, notes, and snippets.

@iamwinnie
Created February 14, 2019 02:42
Show Gist options
  • Save iamwinnie/2c800e110f553ea053606ae71bb8cd74 to your computer and use it in GitHub Desktop.
Save iamwinnie/2c800e110f553ea053606ae71bb8cd74 to your computer and use it in GitHub Desktop.
2.7 intro to jquery
$(document).ready(function() {
$('.message-box').css('background', '#D5FDD5');
$('#button').on('click', function() {
var comment = $('.message-box').val();
console.log(comment);
$('#invisible-comment').html('We received your message:' + ' ' + comment);
$('.message-box').hide();
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment