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
ByC.O.T.B.S
LevelBeginner
User Rating4.3 (13 globes from 3 users)
Compatibility
CategoryInternet/ Browsers/ HTML
WorldJava
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>