I have the following code
<input type="radio" name="HotelSearch_Measure" value="Miles">
<input type="radio" name="HotelSearch_Measure" value="KM">
However when I use the following it works in IE9/Chrome/Firefox but not in IE6
jQuery("input[value='Miles'").attr("checked", true);
I've tried searching with no luck.
Thanks in advance.