Habsburg

Untitled

Apr 12th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. if(elem.id === "korisnicko_ime") {
  2. var val = elem.value;
  3. console.log(val.length);
  4. if(val.length < 10) {
  5. chStyle(elem, oldColor, 1);
  6. e.preventDefault();
  7. } else if(val[0] == val[0].toUpperCase()) {
  8. chStyle(elem, oldColor, 1);
  9. e.preventDefault();
  10. } else
  11. chStyle(elem, oldColor, 0);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment