Here is a group of radio buttons:
<input id="Radio1" type="radio" name="g" />rbtn 1
<input id="Radio2" type="radio" name="g" />rbtn 2
<input id="Radio3" type="radio" name="g" />rbtn 3
<div id="test">Click this div to uncheck selected radio button</div>
And my JQuery code looks like this:
<script type="text/javascript">
$(document).ready(function () {
$("#test").click(function () {
//alert("clicked");
$(":checked").removeAttr("checked");
//$(":checked").attr("checked", false);
});
});
</script>
For some reason, I can't see any radio button has been unchecked when I click the div. I have also tried to use attr() method to set checked equals false, but still no luck. Could anyone please give me a little hint here? Thanks very much.
EDIT:
I don't know if it's because using ASP page causes the problem. I doubt so though. Just can't think of anything else that stops it working. So weird.
EDIT2:
I think I have found the actual cause. The problem seems to be the DOCTYPE. I wouldn't have thought of that in the first place, really. T_T
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The above was I originally had with my HTML, and when I took it out, JQuery seemed to be working all right :)
Any explanation on that?
EDIT3:
I think by removing DOCTYPE we will be using IE's quirks mode. So for non-IE browsers, it actually won't help.
FINAL EDIT:
Finally I can stop scratching my head by upgrading JQuery code to the latest version. Indeed, JQuery 1.6.2 is a lot better than JQuery 1.6. :D