-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (39 loc) · 1.35 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
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<title>jquery-simpledatepicker</title>
<script src=//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js></script>
<link rel=StyleSheet href="jquery-simpledatepicker/main.css" type="text/css" media=screen>
<script src=jquery-simpledatepicker/main.js></script>
</head>
<body style="margin: auto; max-width: 600px;">
<h1>jquery-simpledatepicker</h1>
<em>simple date picker widget for your html page</em>
<h2>demo</h2>
<a href=http://x.sr.unh.edu/jquery-simpledatepicker>http://x.sr.unh.edu/jquery-simpledatepicker</a>
<h2>code</h2>
<a href=https://github.com/collinsp/jquery-simpledatepicker>https://github.com/collinsp/jquery-simpledatepicker</a>
<p>
To place a picker next to an input element, simply add a
<br>
<code><a class=jquery-simpledatepicker-CalendarBut></a></code>
<br>
tag next to the input. The date picker activation is live (delegated on the document).
<p>
plain old text input
<input type=text>
<a class=jquery-simpledatepicker-CalendarBut></a>
<p>
using date input
<input type=date>
<a class=jquery-simpledatepicker-CalendarBut></a>
<p>
using datetime input
<input type=datetime value='2000-01-01T14:01:01'>
<a class=jquery-simpledatepicker-CalendarBut></a>
<p>
using datetime-local input
<input type=datetime-local value='2000-01-01T14:01:01'>
<a class=jquery-simpledatepicker-CalendarBut></a>
</body>
</html>