Guest User

Untitled

a guest
May 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. var isValid;
  2. $("input").each(function() {
  3. var element = $(this);
  4. if (element.val() == "") {
  5. isValid = false;
  6. }
  7. });
Add Comment
Please, Sign In to add comment