Created
February 14, 2019 02:42
-
-
Save iamwinnie/2c800e110f553ea053606ae71bb8cd74 to your computer and use it in GitHub Desktop.
2.7 intro to jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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