forked from ded/CalEnder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
34 lines (34 loc) · 925 Bytes
/
demo.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
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>CalEnder Demo</title>
<style type="text/css" media="screen">
body {
width: 600px;
margin: 0 auto;
}
h1 {
font: 100 46px/1.4 "lucida grande", lucida;
color: #555;
}
input {
font: 36px lucida grande, lucida, helvetica, arial;
padding: 10px;
border: 1px solid #999;
}
</style>
<link rel="stylesheet" href="./calender.css" type="text/css">
<script src="http://ender-js.s3.amazonaws.com/jeesh.min.js"></script>
<script src="./calender.min.js"></script>
<script>
$(document).ready(function () {
$('input').calender()
})
</script>
</head>
<body>
<h1>pick a date</h1>
<p><input type="text" name="some_date" value="" id="some_date"></p>
</body>
</html>