How do I go about doing this with jQuery?
Basically the structure:
<form id="myForm">
<iframe>
<!-- Normal HTML headers omitted -->
<input type=radio name="myRadio" value=1>First
<input type=radio name="myRadio" value=2>Second
<input type=radio name="myRadio" value=3>Third
</iframe>
<input type=button value="Submit" />
</form>
I tried various examples from the net such as
$("input[@type=radio][@checked]");
But failed. Even with jQuery form plugin's .fieldValue() failed.