[Copy to clipboard] [ - ]
CODE:
<script type= ext/javascript>
shuffle = 1; //Replace 1 with 0 if you want to temporarily turn off this script
//you can keep adding more titles by copying over, as long as you change the number
title=new Array();
title[0] = "標題1";
title[1] = "標題2";
title[2] = "標題3";
title[3] = "標題4";
title[4] = "標題5";
title[5] = "標題6";
title[6] = "標題7";
if (shuffle == 1) {
var randsg = Math.floor(Math.random()*title.length);
document.title = title[randsg];
}
</script>