-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (25 loc) · 1.11 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>datepicker-fu example</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link href="stylesheets/core.css" media="all" charset="utf-8" rel="Stylesheet" type="text/css"/>
<link href="stylesheets/calendar.css" media="all" charset="utf-8" rel="Stylesheet" type="text/css"/>
<link href="stylesheets/blue.css" media="all" charset="utf-8" rel="Stylesheet" type="text/css"/>
</head>
<body>
<div id="container">
<h1>Examples: embeded</h1>
<div id="embedded" class="clear">
</div>
<h1>Examples: popup</h1>
<button id="popup">Open calendar</button>
</div>
<script type="text/javascript" src="javascripts/prototype.packed.js"></script>
<script type="text/javascript" src="javascripts/datepicker-fu.js"></script>
<script type="text/javascript" charset="utf-8">
new UI.Calendar('embedded');
new UI.Calendar('popup', { popup: true });
</script>
</body>
</html>