Guest User

Untitled

a guest
Jan 22nd, 2018
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. function checkPseudo(pseudo)
  2. {
  3.  
  4. if(pseudo.value.length < 3 || pseudo.value.length > 15)
  5. {
  6. $("#pseudo-error").show('normal');
  7. }
  8. else
  9. {
  10. $("#pseudo-error").hide('normal');
  11. }
  12. }
Add Comment
Please, Sign In to add comment