-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 851 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 851 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
26
<!DOCTYPE html>
<html lang='en'>
<head>
<title>Dayparting Demo</title>
<link rel='stylesheet' type='text/css' href='css/bootstrap.min.css' />
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'></script>
<script type='text/javascript' src='http://ajax.cdnjs.com/ajax/libs/json2/20110223/json2.js'></script>
<script type='text/javascript' src='js/bootparting.js'></script>
</head>
<body>
<div class='container'>
<h1>Dayparting demo</h1>
<div class='span8'>
<form action='#' method='post'>
<table class='table table-striped table-condensed' id='dayparting'></table>
<input type='submit' class='btn btn-primary' />
</form>
</div>
</div>
<script type='text/javascript'>
$(function() {
$('#dayparting').bootparting();
});
</script>
</body>
</html>