README.md
December 5, 2022 ยท View on GitHub
Description
If you want to hide your links from the status bar use this script <--very easy
More Info
Paste this code into the < head > of your document and it wall display a permanent massge in the status bar.
To change what is displayed just simply change the 'DISPLAYS THIS IN STATUS BAR' part.Enjoy
| Submitted On | |
| By | C.O.T.B.S |
| Level | Beginner |
| User Rating | 4.3 (13 globes from 3 users) |
| Compatibility | |
| Category | Internet/ Browsers/ HTML |
| World | Java |
| Archive File |
Source Code
<script language="JavaScript">
var message = 'DISPLAYS THIS IN STATUS BAR';
statuss();
function statuss()
{
window.status = message;
timerID = setTimeout("statuss()", 25);
}
</script>