Guest User

Untitled

a guest
Dec 18th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. // verifica se o input checked foi clicado
  2. $("input[name^='sofa']").on('click', function() {
  3. // verifica se esta "checado"
  4. if ($(this).is(":checked"))
  5. $("select[name='tempo-sofa']").attr("disabled", false); // habilita o select
  6. else
  7. $("select[name='tempo-sofa']").attr("disabled", true); // desabilita o select
  8. });
Add Comment
Please, Sign In to add comment