Most of the modern day browsers consider checked="anything"
as checked="true"
.
You might have to remove the checked attribute if that makes sense in your case, one of which might be related to when you load the page.
$(this).removeAttr('checked')
This might help you in cases when you want your radio button to be checked adhering to some condition. You can simply remove the attribute to achieve that.
PS: Not helpful in all the cases.