-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
37 lines (37 loc) · 1014 Bytes
/
example.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Era.js</title>
<link rel="stylesheet" type="text/css" href="era.css"/>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.js"></script>
<script type="text/javascript" src="era.js"></script>
<style>
body {
background-color:#505050;
}
#output {
width:300px;
height:200px;
}
</style>
<script>
window.onload = function () {
let cal_container = document.getElementById('cal_content')
let out = document.getElementById('output')
let handle = document.getElementById('show_cal')
let era = Era({
element: cal_container, handle: handle, on_select: function (dates) {
out.value = dates.map((date) => date.format('YYYY-MM-DD')).join(', ')
}
})
}
</script>
</head>
<body>
<label><textarea id="output"></textarea></label>
<br>
<span id="show_cal">Show Calendar</span>
<div id="cal_content"></div>
</body>
</html>