-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
43 lines (37 loc) · 1.12 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Cron Widget</title>
<link rel="stylesheet" href="content/themes/base/jquery.ui.all.css">
<link rel="stylesheet" href="content/scripts/chosen/chosen.css">
<link rel="stylesheet" href="jquery-cronbuilder.css">
<script src="content/scripts/jquery/jquery-1.9.1.js"></script>
<script src="content/scripts/jquery-ui/jquery.ui.core.js"></script>
<script src="content/scripts/jquery-ui/jquery.ui.widget.js"></script>
<script src="content/scripts/jquery-ui/jquery.ui.mouse.js"></script>
<script src="content/scripts/chosen/chosen.jquery.js"></script>
<script src="jquery-cronbuilder-widget.js"></script>
<style>
body {
font-family: verdana;
}
</style>
<script>
$(function() {
$( "#cron1" ).cronselector({targetInput : "input.c1"});
$( "#cron2" ).cronselector({targetInput : "input.c2"});
});
</script>
</head>
<body>
<div id="cron1"></div>
<div>
<p>Cron Value Selected: <input type="text" name="c11" class="c1"/></p>
</div>
<div id="cron2"></div>
<div>
<p>Cron Value Selected: <input type="text" name="c21" class="c2"/></p>
</div>
</body>
</html>