I\'m trying to get the value of a dropdown on change (and then change the values in a second dropdown).
EDIT: Thanks for all the replies, i\'ve upda
$('.dropone').change(function() { var val = $(this).val(); // OR var val = this.value; })