Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $(document).ready(function(){
  2. $("#name, #phone, #email, .message_box").css("background-color","lightgrey");
  3. });
  4.  
  5. $("#submit_button").on("click", function() {
  6. console.log("clicked");
  7. var comment = $(".message_box").val();
  8. console.log(comment);
  9. $("#visible-comment").html(comment +" .DON'T CONTACT ME!").css("color","red");
  10. return false;
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement