| Author |
HTML syntax question
|
|
|
| This question may not necessary apply to the Site Designer exam, but I was wondering how do you make a text, sometimes moving text, on the lower bar(the bar that shows that the "web site is found, waiting for the reply) What is the html syntax? | |
| flyingbird 2001-04-12, 10:24 pm |
| I don't think there is HTML syntax can handle it. The status bar can be accessed via JavaScript.
For instance: window.status="text goes here" | |
| Yolka 2001-04-12, 10:40 pm |
| Could you please show a full code example for the status bar.
Thanks | |
| jaywang 2001-04-13, 8:30 am |
| Hi Yolka.
Please try the following code.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<body>
<H2>Windows Status Bar Demo</H2>
<br>
<P>
<strong>Put your mouse on the hyperlink, and have a look on the status bar.</strong>
</P>
<br><br>
<a href="http://www.examnotes.net/forums/showthread.php?threadid=16301"
onMouseOver ="
status = 'Hi, Yolka. Jay here. Good luck with your exam.'; return true;"
onMouseOut = "
status = ''; return true;" >
You will find answer in Examnotes.
</a>
</body>
</html> | |
|
| Thanks Jay once again for your help |
|
|
|