Guest User

Untitled

a guest
Nov 22nd, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. $('#nu_useful_width_max').keyup(function(){
  2. setTimeout(function(){
  3. var min = parseFloat(document.getElementById('nu_useful_width_min').value);
  4. var max = parseFloat(document.getElementById('nu_useful_width_max').value);
  5. if(min>=max)
  6. alert('El ancho útil minimo no puede ser mayor al ancho útil maximo, por favor corregir');
  7.  
  8. }, 1300);
  9. return false;
  10.  
  11. });
Add Comment
Please, Sign In to add comment