Scrolling message on the status bar using Javascript
By: Guru Singh
If you are looking for a simple java script to show a scrolling message on the status bar then you can use this script.
<!-- TWO STEPS TO INSTALL WRITE AND SLIDE:
1. Paste the coding into the HEAD of your HTML document
2. Copy the onLoad event handler into the BODY tag -->
<!-- STEP ONE: Copy this code into the HEAD of your
HTML document -->
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var Message="Yet another simple scroll!";
var place=1;
function scrollIn() {
window.status=Message.substring(0, place);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollOut()",300);
} else {
place++;
window.setTimeout("scrollIn()",50);
}
}
function scrollOut() {
window.status=Message.substring(place, Message.length);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollIn()", 100);
} else {
place++;
window.setTimeout("scrollOut()", 50);
}
}
// End -->
</SCRIPT>
<!-- STEP TWO: Add this onLoad event handler
into the BODY tag -->
<BODY onLoad="scrollIn()">
<p><center>
<font face="arial, helvetica" size="-2">Free
JavaScripts provided<br>
by <a href="http://www.java-samples.com">The Java samples home</a></font>
</center><p>
Archived Comments
- Data Science
- Android
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Related Tutorials
Use WinSCP to transfer log files remotely using Javascript
Verifying user input in JavaScript
Javascript to display client date and time on webpage
Getting Browser's height and width using Javascript
Highlighting text on a page using CSS
Scrolling message on the status bar using Javascript
Diabling Right Click option in a browser using Javascript
Password protect a web page using Javascript
Using revealTrans to do page transitions in Javascript
Form validation using Javascript
window.frames[i] in Javascript
Math object and Math functions in Javascript