forked from pophealth/pophealth.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webinar.html
60 lines (54 loc) · 1.93 KB
/
webinar.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
<!doctype html>
<html lang=en>
<head>
<meta charset="utf-8">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width">
<!--[if lte IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<meta http-equiv="x-ua-compatible" content="IE=edge">
<link rel="stylesheet" href="stylesheets/main.css" type="text/css" media="screen"/>
<link rel="icon" type="image/png" href="/images/pophealth_logo_small.png"/>
<title>popHealth - Webinar</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>
// DOM ready
$(function() {
// Create the dropdown base
$("<select />").appendTo("nav");
// Create default option "Go to..."
$("<option />", {
"value" : "",
"text" : "Go to..."
}).appendTo("nav select");
// Populate dropdown with menu items
$("nav a").each(function() {
var el = $(this);
var opt = $("<option />", {
"value" : el.attr("href"),
"text" : el.text()
});
if ($(this).hasClass("active")) opt.attr("selected","selected");
opt.appendTo("nav select");
});
// To make dropdown actually work
// To make more unobtrusive: http://css-tricks.com/4064-unobtrusive-page-changer/
$("nav select").change(function() {
window.location = $(this).find("option:selected").val();
});
});
</script>
</head>
<body>
<video
src="media/Pop_Health_Seminar_1_0.flv" width="920" height="548">
</video>
<script>
// using jQuery
$('video,audio').mediaelementplayer(/* Options */);
</script>
</div>
</body>
</html>