Guest User

Untitled

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