forked from keithhackbarth/jquery-datetime-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·46 lines (32 loc) · 1.28 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Timepicker for jQuery – Demos and Documentation</title>
<!-- JQuery -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<!-- Bootstrap -->
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet">
<script src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/js/bootstrap.min.js"></script>
<!-- TimePicker -->
<script type="text/javascript" src="js/jquery.timepicker.js"></script>
<link rel="stylesheet" type="text/css" href="css/jquery.timepicker.css" />
<!-- DatePicker -->
<script type="text/javascript" src="js/bootstrap-datepicker.js"></script>
<link rel="stylesheet" type="text/css" href="css/datepicker.css" />
<!-- Code that links the two -->
<script type="text/javascript" src="js/datepair.js"></script>
</head>
<body>
<div id="container">
<div class="example">
<h3>Datepair Example</h3>
<p class="datepair" data-language="javascript">
<input type="text" class="dt_date_start" />
<input type="text" class="dt_time_start" /> to
<input type="text" class="dt_date_end" />
<input type="text" class="dt_time_end" />
</p>
</div>
</body>
</html>