I am trying to manually set a radio button to checked, but there is a problem. The code works just fine:
$('#'+align+'Text').attr("checked","checked");
But when I put jQuery UI into practice and make the radios a buttonset, everything breaks. Again, everything works fine until I put in the .buttonset(), then they look much better than normal radios, but the setting above does not work at all.
EMPHASIS ON THE FOLLOWING:
Has anyone been able to manually set a radio button while .buttonset() is active on those radios?
checkedproperty is a Boolean value, it's set by being either present or not-present. It doesn't require an attribute. Try using:attr('checked',true)instead. It might make a difference. – David Thomas Feb 28 '11 at 18:05