[jQuery] Input type radio events
Hi,
I'm newbie about javascript and jquery. I would like to know how can
I change values of all input type checkbox to unchecked when the user
changes the values to "No" answer of a input type radio.
The code can be the following
<form>
<fieldset>
<input type="radio" name="foo" />yes
<input type="radio" name="foo" />no
<filedset>
<input type="ckeckbox" name="value" /> Value 1
<input type="ckeckbox" name="value" /> Value 2
</fieldset>
<input type="submit" />
</fieldset>
</form>
Thank you.
Regards,
Bruno.