I have some HTML like this:
<input type="radio" class="MyRadio" name="TheName">
<label for="TheLabel">the text</label>
How do I change the label's text?
Tried
$('#TheLabel').text('My New Text');
It doesn't work. What's the way to do it?
Thanks.