Skip to content

Instantly share code, notes, and snippets.

@OscarGodson
Created August 19, 2013 21:56
Show Gist options
  • Save OscarGodson/6274657 to your computer and use it in GitHub Desktop.
Save OscarGodson/6274657 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
<style>
body, h1 {
font-family: helvetica, arial, sans-serif;
font-size: 70px;
text-align:center;
}
</style>
</head>
<body>
<h1>OMFG JAVASCRIPT</h1>
<div id="video-container"></div>
<script>
var videos = [
'http://www.youtube.com/watch?v=l-iIfi3SNpw',
'http://www.youtube.com/watch?v=XdDiLQvUIo8'
];
var chosenVideo = videos[Math.floor(Math.random() * videos.length)];
document.querySelector('#video-container').innerHTML = '<iframe width="420" height="315" src="' + chosenVideo + '" frameborder="0" allowfullscreen></iframe>'
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment