-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (29 loc) · 975 Bytes
/
index.html
File metadata and controls
34 lines (29 loc) · 975 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
27
28
29
30
31
32
33
34
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jquery-timeRangePicker</title>
<script type="text/javascript" src="lib/jquery-1.4.1.min.js"></script>
<script type="text/javascript" src="jquery-timeRangePicker.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#timePicker").timePicker({
required: true,
minutesStep: 10,
include24: false
});
$("#timeRangePicker").timeRangePicker({
required: false,
minutesStep: 10,
include24: true
});
});
</script>
</head>
<body>
<h1>jquery-timeRangePicker</h1>
<h2>Time Picker</h2>
<span id="timePicker"></span>
<h2>Time Range Picker</h2>
<span id="timeRangePicker"></span>
</body>
</html>