How can I, using jQuery, set the \"next\" item of an already selected item as \"selected.\"
For example, if I have:
This is what i just used, i like how clean it is :-)
$('select').val(function(){ var nextOption = $(this).children(':selected').next(); return $(nextOption).val(); }).change();