[jQuery] checked attribute of radio buttons not handled nicely in 1.2.3

[jQuery] checked attribute of radio buttons not handled nicely in 1.2.3


Hi,
I can stop in a callback with Visual Studio and run these three
commands to get the value of the "checked" attribute of a radio button
which is not selected. Why does the wrapped object not return "false"
like the DOM object?
document.all.ProtectLocal.checked
false
$('#ProtectLocal')[0].checked
false
$('#ProtectLocal').attr("checked")
undefined
If I run these commands for the radio button that is the selected one
in its group, I get "true" for all 3 versions:
document.all.ProtectRemote.checked
true
$('#ProtectRemote')[0].checked
true
$('#ProtectRemote').attr("checked")
true
This feels like a bug.
thanks,
-= chuck