Skip to content

Instantly share code, notes, and snippets.

@Crisfole
Created September 26, 2014 12:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Crisfole/e15408a8821c079744b5 to your computer and use it in GitHub Desktop.
Save Crisfole/e15408a8821c079744b5 to your computer and use it in GitHub Desktop.
Listen until your computer is online
<html>
<head></head>
<body>
<iframe id='test' src="http://www.sadtrombone.com?play=true"></iframe>
<script>
function trySadTrombone() {
var test = document.getElementById("test");
test.src = test.src;
console.log(test.srcdoc);
}
setInterval(trySadTrombone, 10000)
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment