How can I, using jQuery, set the \"next\" item of an already selected item as \"selected.\"
For example, if I have:
$('#next').click( function(){ $('#colored_background option:selected').next('option').attr('selected', 'selected'); changeBackgroundColor(); });
Working at What is my favorite color?. Click on the arrows.