Possible Duplicate:
how to check a radio button with jQuery?
How to change a radio button value.
jQuery('input:radio[name=search][id=search-damages]').checked = true;
i have tried this but it is not working
<input type="radio" name="search" id="search-vehicle" value="search-vehicle" checked>
<input type="radio" name="search" id="search-damages" value="search-damages">
prop
instead ofattr
, thanks. – Evetteevey