<head>
<script>
<!-- Hide
function statbar(txt) {
window.status = txt;
}
// -->
</script>
</head>
<form>
<input type="button" name="look" value="Scrivi!" onclick="statbar('Ciao! Questa è la statusbar !');">
<input type="button" name="erase" value="Cancella!" onclick="statbar('');">
</form>
Prova a spostare il puntatore del mouse qui ma non cliccare !
<head>
<script>
<!-- Hide
function moveover(txt) {
window.status = txt;
setTimeout("erase()",1000);
}
function erase() {
window.status="";
}
// -->
</script>
</head>
<a href="dontclck.htm" onMouseOver="moveover('Disappearing !');return true;"> link</a>
<head>
<script>
<!-- Hide
var scrtxt="Questo � il messaggio che scorre sulla statusbar";
var lentxt=scrtxt.length;
var width=100;
var pos=1-width;
function scroll() {
pos++;
var scroller="";
if (pos==lentxt) {
pos=1-width;
}
if (pos<0) {
for (var i=1; i<=Math.abs(pos); i++) { scroller="scroller+" " ";}
scroller="scroller+scrtxt.substring(0,width-i+1);"
}
else { scroller="scroller+scrtxt.substring(pos,width+pos);" }
window.status="scroller;" setTimeout("scroll()",150); }
//-->
</script>
</head>
<body onLoad="scroll();return true;">
Inserire qui la vostra pagina
</body>
</html>
Riepilogo: Parte 1 - Parte 2 - Parte 3 - Parte 5 - Parte 6 - Parte 7