Guest User

Untitled

a guest
Jun 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. let inputPaseUnico = document.querySelector('#input');
  2. let cantidadPasesUnicos = Number(inputPaseUnico.value);
  3.  
  4. inputPaseUnico.addEventListener('click', function() {
  5. console.log(cantidadPasesUnicos); //aqui imprime siempre 0
  6. if(cantidadPasesUnicos !== 0) {
  7. inputPaseUnico.disbled = false;
  8. }
  9. });
Add Comment
Please, Sign In to add comment