How can I, using jQuery, set the \"next\" item of an already selected item as \"selected.\"
For example, if I have:
Find the row, then
var row = $('#yourTable');
the value you want to select
var theValue = "5"; row.find("select:eq(2)").find("option[value="+theValue+']').attr('selected','selected');