Guest User

Untitled

a guest
Jul 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $(function(){
  2. $('#one').change(function(){
  3. var value = $(this).children(':selected').val();
  4.  
  5. $('#two').children('optgroup')
  6. .not('[label='+value+']')
  7. .attr('disabled', 'disabled')
  8. .end()
  9. .filter('[label='+value+']')
  10. .removeAttr('disabled');
  11. });
  12. });
Add Comment
Please, Sign In to add comment