Skip to content

Instantly share code, notes, and snippets.

@sharpicx
Last active February 15, 2022 06:05
Show Gist options
  • Save sharpicx/9c7751a053db22019d43875c8c934c78 to your computer and use it in GitHub Desktop.
Save sharpicx/9c7751a053db22019d43875c8c934c78 to your computer and use it in GitHub Desktop.
simple scrolling title script.
msg = " empty name -" // fill this string
msg = " simple scroll -"+ msg;position = 0;
function puter() { // simple scroll function
document.title = msg.substring(position, msg.length) + msg.substring(0, position);
position++;
if (position > msg.length) position = 0
window.setTimeout("puter()",50);
}
puter();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment