-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.php
More file actions
28 lines (27 loc) · 938 Bytes
/
test.php
File metadata and controls
28 lines (27 loc) · 938 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ClockPicker</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap-clockpicker.min.css">
<link rel="stylesheet" type="text/css" href="css/github.min.css">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery-clockpicker.min.js"></script>
</head>
<body>
<div class="container">
<input id="input-a" value="" data-default="20:48">
<!-- <button type="button" id="button-a">Check the minutes</button>
<button type="button" id="button-b">Check the hours</button> -->
</div>
<script>
var input = $('#input-a');
input.clockpicker({
autoclose: true
});
</script>
</body>
</html>