Skip to content

Instantly share code, notes, and snippets.

@stvedt
Created September 17, 2012 15:44
Show Gist options
  • Save stvedt/3738102 to your computer and use it in GitHub Desktop.
Save stvedt/3738102 to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Tab Alerts</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
var baseTitle = document.title;
setInterval(updateTitle, 2000);
function updateTitle(){
var randomnumber=Math.floor(Math.random()*11)
document.title = baseTitle + ' - (' + randomnumber + ')';
}
});
</script>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment