Guest User

Untitled

a guest
Mar 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <select name="selector[]" id="selector">
  2. <option value="1">Valor 1</option>
  3. <option value="2">Valor 2</option>
  4. </select>
  5.  
  6. <select name="selector[]" id="selector">
  7. <option value="1">Valor 1</option>
  8. <option value="2">Valor 2</option>
  9. </select>
  10.  
  11. $('#selector').on('change', function(e){
  12. e.preventDefault();
  13. // acciones
  14. });
Add Comment
Please, Sign In to add comment