Create a checkbox
Description
The following code shows how to create a checkbox.
Example
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css">
<script type='text/javascript'
src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
</head><!--from w w w . j av a 2 s .c o m-->
<body>
<form id="loginForm" action="" method="post">
<input id="rememberMe" name="rememberMe" type="checkbox" />
<label for="rememberMe">Remember me in this computer</label>
</form>
</body>
</html>