forked from koreinnovations/JavaScript-Hebrew-Calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
65 lines (48 loc) · 1.65 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<SCRIPT type="text/javascript" LANGUAGE="JavaScript" SRC="kdate.js"></SCRIPT>
<SCRIPT type="text/javascript" LANGUAGE="JavaScript" SRC="hebrew-calendar.js"></SCRIPT>
<link rel="stylesheet" type="text/css" href="stylesheets/page.css" />
<link rel="stylesheet" type="text/css" href="stylesheets/calendar.css" />
</head>
<body>
<h3>
JavaScript Hebrew Calendar
</h3>
<form id="calendar-form">
<input id="prev-month" type="button" value="<" />
<select id="month">
<option>January</option>
<option>February</option>
<option>March</option>
<option>April</option>
<option>May</option>
<option>June</option>
<option>July</option>
<option>August</option>
<option>September</option>
<option>October</option>
<option>November</option>
<option>December</option>
</select>
<input id="next-month" type="button" value=">" />
  
<input id="prev-year" type="button" value="<">
<input id="year" NAME="yr" type="text" value=" " >
<input id="next-year" type="button" value=">">
  
<input id="today" type="button" value=" Today " />
  
Holidays:
<select id="holidays">
<option>Jewish</option>
<option>Civil</option>
<option>All</option>
<option>None</option>
</select>
</form>
<div id="calendar-container">
</div>
</body>
</html>