-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 871 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tabbed Check Boxes - jQuery plugin to render checkbox</title>
<meta charset=utf-8>
<meta name="description" content="Tabbed Check Boxes" />
<meta name="keywords" content="jquery, checkbox, check, box, tab, simple, css"/>
<link rel="stylesheet" type="text/css" href="jquery.tabcheckbox.min.css" />
</head>
<body>
<div>
<input type="checkbox" class="checkboxToTab" data-text="Click me!" />
</div>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous"></script>
<script type="text/javascript" src="jquery.tabcheckbox.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('.checkboxToTab').tabCheckBox();
});
</script>
</body>
</html>