Guest User

Untitled

a guest
Feb 15th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $(document).ready(function() {
  2. $('.message-box').css('background', '#D5FDD5');
  3. $('#button').on('click', function() {
  4. var comment = $('.message-box').val();
  5. console.log(comment);
  6. $('#invisible-comment').html('We received your message:' + ' ' + comment);
  7. $('.message-box').hide();
  8. return false;
  9. });
  10. });
Add Comment
Please, Sign In to add comment