If I have the following radios:
<input name="color" id="color_blue" value="blue">Blue
<input name="color" id="color_red" value="red">Red
<input name="color" id="color_green" value="blue">Green
What's the easiest way to find out which radio the user selected? Preferably something like to:
$("color").val();
Or something close to that.