Skip to content

Instantly share code, notes, and snippets.

@mwgkgk
Created October 16, 2016 14:35
Show Gist options
  • Save mwgkgk/98d0bb723c685f849fb99a88ac29b809 to your computer and use it in GitHub Desktop.
Save mwgkgk/98d0bb723c685f849fb99a88ac29b809 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Wikipedia Stream</title>
<style>
html, body, iframe {
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<iframe id="ifrm" src="https://en.wikipedia.org/wiki/Special:Random"></iframe>
<script>
window.setInterval(function() {
document.getElementById('ifrm').src += '';
}, 10000);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment