Since your example is a dropdown, you should use val ()
$("select[name='car']").val('volvo');
If you want to use the radio button, you can use
$(":radio[value='volvo']").attr ( "checked" , true );
for the next HTML
<input type="radio" value="volvo" />
<input type="radio" value="saab" />
<input type="radio" value="mercedes" />
<input type="radio" value="audi" />
rahul source
share