[JQuery] Highlight a Radio field and then pop up an input text box field
Hi all,
I am trying to make some dynamic effect to a HTML page using JQuery.<br/>
1.<br/>
When the user clicks a Radio field, the field will be highlighted.<br/>
2.<br/>
When the user clicks the Radio 'Man', <br/>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>