Check radio button whose value = $ programmatically
The switch group is defined:
<input type="radio" name="type0" value="$">$<input type="radio" name="type0" value="%">% It is necessary to check the first switch whose value = $ .
The problem is that the code below does not do this. Need to somehow avoid $
$('input[type=radio][value=$]').attr('checked','checked'); +4
4 answers