-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
21 lines (21 loc) · 1.05 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<title>Office Hours</title>
</head>
<body>
<div id="calendar-container" align="center">
<iframe style="border: 0;" src="https://calendar.google.com/calendar/embed?src=or2imhjarc2jctrv6445kcfnt0%40group.calendar.google.com&ctz=America%2FNew_York" width="800" height="600"></iframe>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jstimezonedetect/1.0.6/jstz.min.js"></script>
<script>
var timezone = jstz.determine();
console.log(timezone.name());
var pref = '<iframe src="https://calendar.google.com/calendar/embed?height=600&wkst=1&bgcolor=%23FFFFFF&src=b3IyaW1oamFyYzJqY3RydjY0NDVrY2ZudDBAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&color=%23333333&ctz=';
var suff = '" style="border-width:0" width="800" height="600" frameborder="0" scrolling="no"></iframe>';
var iframe_html = pref + timezone.name() + suff;
document.getElementById('calendar-container').innerHTML = iframe_html;
</script>
</html>