Auto check checkbox
Description
The following code shows how to auto check checkbox.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.7.1.js'></script>
<script type='text/javascript'
src="http://code.jquery.com/mobile/latest/jquery.mobile.min.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/latest/jquery.mobile.min.css">
<script type='text/javascript'>//<![CDATA[
$(window).load(function(){<!-- w w w. j a v a 2 s . com-->
$("#group").append('<fieldset data-role="controlgroup">'
+'<input type="checkbox" id="cb1" /><label for="cb1">text</label>'
+'<input type="checkbox" id="cb2" /><label for="cb2">More text</label></fieldset>'
)
.trigger("create");
$("#check").click(function(){
$("input[type='checkbox']:first").attr("checked",true).checkboxradio("refresh");
});
});//]]>
</script>
</head>
<body>
<div data-role="page" id="home">
<div data-role="header">
<h1>Search Test</h1>
</div>
<div data-role="content" id="content">
<a href="#" data-role="button" id="check">Check</a>
<div data-role="fieldcontain" id="group"></div>
</div>
</div>
</body>
</html>