id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,blocking,blockedby
2702,Wrap manipulation resets state of radiobutton in IE,e-andy,,"Wrap manipulation resets state of radiobutton in IE 6 only (6.0.2900.2180 sp2)

For example:

<html>
<head>
    <script type=""text/javascript"" src=""/media/inc/jquery/main/v1.2.3/jquery.min.js""></script>
    <script type=""text/javascript"">
        $(""form"").ready(function() {
            $("":radio[name=xxx][value=1]"").attr(""checked"", ""true""); // value may be ""1"", true, ""yes"" etc - result doesnt change
            alert($("":radio[name=xxx][value=1]"").attr(""checked""));
            $(""span"").wrap(""<div></div>"");
            alert($("":radio[name=xxx][value=1]"").attr(""checked""));
        });
    </script>
</head>
<body>
<label>
    <form>
        <span>
            <input type=""radio"" name=""xxx"" value=""1""/>yes
            <input type=""radio"" name=""xxx"" value=""0""/>no
        </span>
    </form>
</label>
</body>
</html>",bug,closed,major,1.2.3,core,1.2.3,duplicate,wrap attributes,e-andy@…,,
