Newbie:window.staus
3 Message(s) by 2 Author(s) originally posted in javascript java
| From: Saxman |
Date: Sunday, October 15, 2006
|
Can anybody tell why the following title doesn't
display in the status bar?
....................................................................
<html>
<head>
<script>
document.title="My Own Page"
window.status="Hello and welcome to my own page"
</script>
</head>
<body>
</body>
</html>
..............................................
TIA
| From: Evertjan. |
Date: Sunday, October 15, 2006
|
wrote in
message on 15 okt 2006 in comp.lang.JAVA.JAVAscript:
Can anybody tell why the following title doesn't display in the
status bar?
The "title" never displays the status bar.
<script>
use:
<script type='text/JAVAscript'>
document.title="My Own Page"
window.status="Hello and welcome to my own page"
</script>
Because you are using IE7 perhaps,
or in an other
browser where this is switched off.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
| From: Saxman |
Date: Sunday, October 15, 2006
|
wrote in message:
Because you are using IE7 perhaps,
or in an other browser where this is switched off.
I'm using Firefox.
I opened the page with IE, allowed the content and it displays fine.
Thanks for the feedback.
Next Message: Newbie: 3 Lines - Why does not it work.