Skip to content

Instantly share code, notes, and snippets.

@tamebadger
Created October 1, 2014 11:28
Show Gist options
  • Save tamebadger/64253d3a7882d91b28f7 to your computer and use it in GitHub Desktop.
Save tamebadger/64253d3a7882d91b28f7 to your computer and use it in GitHub Desktop.
quickie
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body onload="yourFunc()">
<script type="text/javascript">
function yourFunc(){
var d = Date();
console.log(d);
var begin=setInterval ('changeBanner()', 2000);
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment