-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (27 loc) · 841 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="mCheck.css">
<title>mCheck Demonstration</title>
</head>
<body>
<form>
<input type="checkbox" name="demo-checkbox" id="demo-checkbox" />
<label for="demo-checkbox">Demo Checkbox</label>
<br />
<input type="checkbox" name="demo-checkbox2" id="demo-checkbox2" checked="checked" />
<label for="demo-checkbox2">Demo Checkbox 2</label>
<br /><br />
<input type="submit" />
</form>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script type="text/javascript" src="mCheck.js"></script>
<script type="text/javascript">
$(function() {
$('#demo-checkbox').mCheck();
$('#demo-checkbox2').mCheck();
});
</script>
</body>
</html>