Advertisement
Guest User

Untitled

a guest
Oct 1st, 2016
58
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. var $validacao = $("#validacao");
  3. $("#validar").click(function() {
  4. $validacao.html('');
  5. $("input").each(function(index, element) {
  6. if (!element.value.trim()) {
  7. $validacao.append(element.id + "<br>");
  8. }
  9. });
  10. });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement