Guest User

Untitled

a guest
Oct 11th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. $('#button').on('click', function() {
  2. var comment = $('.message-box').val();
  3. var prefix = "Thank you, "
  4. var suffix = ". We have received your message!"
  5. var name = $('.text-box1').val();
  6. $('#visible-comment').html(prefix+name+suffix);
  7. if (comment === "") {
  8. $("#message-box").css("border", "2px solid red");
  9. } else {
  10. $('.text-box1').hide();
  11. $('.text-box2').hide();
  12. $('.phone-box').hide();
  13. $('.email-box').hide();
  14. $('.message-box').hide();
  15. }
  16. return false;
  17. });
Add Comment
Please, Sign In to add comment