Guest User

Untitled

a guest
Jun 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. // let's create variables
  2. var handle = $("#handle").val();
  3. var question = $("#question").val();
  4. var comment = $("#comment").val();
  5.  
  6. // are fields blank?
  7. if (handle == ""){
  8. $("#handle_error").fadeIn('medium')
  9. }
  10. if (question == ""){
  11. $("#question_error").fadeIn('medium')
  12. }
  13. if (comment == ""){
  14. $("#comment_error").fadeIn('medium')
  15. }
Add Comment
Please, Sign In to add comment