Here is my code, i want to clrae the response of radio when i click on the button.
<table class='x'>
<tr><td><input type="radio"></td></tr>
<tr><td><input type="text"></td></tr>
</table>
<input type='button' id="a" value="dfrfvrgv">
Here is the jQuery code
$('#a').click(function()
{
$('TABLE .x').find('input').removeAttr('checked');
});
But it is not working, Seems to be problem with the code. Please someone help me.