Side navigation
Ticket #3879: test.html
File test.html, 0.5 KB (added by Pyro979, January 16, 2009 12:15AM UTC)
test case
<html>
<head>
<title></title>
<script language="javascript" type="text/javascript" src="jquery.js" title="JQuery"></script>
<script>
$(
function()
{
var check=$(document.createElement("input")).attr("type","checkbox");
check.attr("checked","checked");
$("#id_main1").append(check);
}
);
</script>
</head>
<body>
<span id="id_main1" valign="top">test span</span><<===== This should be checked, but in IE7 it's not
</table>
</body>
</html>
Download in other formats:
Original Format
File test.html, 0.5 KB (added by Pyro979, January 16, 2009 12:15AM UTC)
test case
<html>
<head>
<title></title>
<script language="javascript" type="text/javascript" src="jquery.js" title="JQuery"></script>
<script>
$(
function()
{
var check=$(document.createElement("input")).attr("type","checkbox");
check.attr("checked","checked");
$("#id_main1").append(check);
}
);
</script>
</head>
<body>
<span id="id_main1" valign="top">test span</span><<===== This should be checked, but in IE7 it's not
</table>
</body>
</html>