<input type="checkbox" name="Rates" class="RatesClass">Rates & Fees<br />
How can I change that text Rates & Fees dynamically, using Jquery?
Thanks!
How about this one that doesn't have a class defined?
<input type="checkbox" id="Value" name="Values">Values<br />
EDIT:
<input type="checkbox" id="RatesFees" name="Rates" class="RatesClass">Rates & Fees<br />
<input type="checkbox" id="RatesOnly" name="RatesSpecific" class="RatesClass">Rates (All-In-Rate Only)<br />
yourInput.NextSibling.Data='new text';<label>around "Rates & Fees" and set itsforattribute to "Rates" so that clicking on the text will also mark the checkbox. That would also give you the label tag to select on.<br />for an end tag...