I have a set of radio buttons, and would like to make both the button itself and the attached text be clickable (to improve usability).
This should be very straightforward, but for some reason the radio button's state will not update when triggered from jQuery. What happens is the checked attribute will appear in the DOM, but the radio button seems to remain unchecked (visually).
Note: It works perfectly when I run the code from the console, but when it's triggered normally by my function, it does not update. Also, this code works perfectly for un-checking the other radio buttons in the group... so I'm confused as to why it doesn't work in the other direction.
Here's my markup:
<div class="radio-input">
<input type="radio" name="ad_category" id="cat_standard">
<span class="inline-label">Standard</span>
</div>
<div class="radio-input">
<input type="radio" name="ad_category" id="cat_reward">
<span class="inline-label">Reward</span>
</div>
and the jQuery:
$(".radio-input").click( function() {
if (!$(this).children("input:radio").attr("checked")) {
$(this).siblings(".radio-input").children("input:radio").removeAttr("checked");
$(this).children("input:radio").attr("checked","checked");
}
});
For the record, calling click() on the element produces the same non-result, even though it works fine when triggered from the console. Also, both .prop and .attr yield the same result (working in console, not working in regular flow).