کد رقص متن در استاتوس بار (كد جاوا):
کد:
<script>
var yourwords = "نوشته شما در اینجا";
var speed = 300;
var control = 1;
function flash()
{
if (control == 1)
{
window.status=yourwords;
control=0;
}
else
{
window.status="";
control=1;
}
setTimeout("flash()",speed);
}
</script>
<body onLoad="flash()">
<!-- End of Status Blinker -->
<!--www.iranjoman.com -->