Hi all,
I am trying to make some dynamic effect to a HTML page using JQuery.
1.
When the user clicks a Radio field, the field will be highlighted.
2.
When the user clicks the Radio 'Man',
a Input text box will be provided immeditely just below it.
Here is my simple HTML page, but I don't know how to do with the JQuery part:
<Table>
<TR>
<TD>Gender</TD>
<TD>
Man: <INPUT type=radio name="gender" value="M"><Br/>
Woman: <INPUT type=radio name="gender" value="F">
</TD>
</TR>
</Table>