jQuery RadioButton index
- by Tomas
Hello
How to get checked RadioButton Index using jQuery? I need to read it and save to cookies to load status later using code
$('input[name="compression"]')[{Reading from cookies code}].checked = true;
1<input name="compression" type="radio" value="1" checked="checked" />
2<input name="compression" type="radio" value="2" />
3<input name="compression" type="radio" value="3" />
Regards
Tomas