Advertisement
sidoruk_sv

Untitled

Apr 17th, 2013
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. if (inputValue > defaultMax) {
  2. alert('Введите число от ' + defaultMin + ' до ' + defaultMax);
  3. inputElement.focus();
  4. return;
  5.  
  6. } else if (inputValue < defaultMin) {
  7. alert('Введите число от ' + defaultMin + ' до ' + defaultMax);
  8. inputElement.focus();
  9. return;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement