[jQuery] Select onchange event get a value from selects table row
I have a table that contains a select element like so
<tr><td>key value in hidden input</td><td><select>options</select></
td></tr>
I need to set
$("selectclass").change(function() {
//Find the value of hidden input in 1st cell of row of the select
list that was changed.
});
So when a user changes the option of the select i need to get the new
value the option has been changed to plus the value from the hidden
input and submit them via ajax to a method on the server. How can i
get the hidden inputs value?
Thanks for any help /suggestions,
kevin