I've seen some sites (i.e., http://www.legworkstudio.com/) that have tags that change at intervals and I assume it's done through Javascript, but I have not seen any kind of documentation on such an action.
I don't believe document.title will work for this, but maybe I have misunderstood how to use it properly.
Anybody seen something like this or how best to do this?
Basically in the HTML it would look like this every few seconds:
<title>Title 1</title>
then after a few seconds
<title>Title 2</title>
then after a few seconds more
<title>Title 3</title>
setInterval(function(){ document.title = "Title " + Math.ceil(Math.random() * 5) }, 1000);