-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
25 lines (24 loc) · 962 Bytes
/
example.html
File metadata and controls
25 lines (24 loc) · 962 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta chartset="utf-8">
<title>Example checkbox plugin</title>
<link rel="stylesheet" type="text/css" href="css/checkbox-plugin.css">
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script type="text/javascript" src="scripts/checkbox-plugin.js"></script>
<script type="text/javascript" src="scripts/app.js"></script>
</head>
<body>
<h3>
Select your favorites browsers:
</h3>
<div id="checkbox-container">
<input type="checkbox" class="checkbox-plugin" data-label="Firefox" />
<input type="checkbox" checked class="checkbox-plugin" data-label="Google Chrome" />
<input type="checkbox" class="checkbox-plugin" data-label="Internet Explorer" />
<input type="checkbox" class="checkbox-plugin" data-label="Opera" />
</div>
</body>
</html>