Guest User

Untitled

a guest
Jun 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $('#tlfFijo').keydown(function(){
  2. var elem = $('#tlfFijo')
  3. if(!elem.val().length || !(/^8|9\d{8}$/.test(elem.val())))
  4. $('td.errorF').html("<span class='red'>Datos incorrectos</span>");
  5. else
  6. $('td.errorF').empty();
  7. });
Add Comment
Please, Sign In to add comment