| View previous topic :: View next topic |
| Author |
Message |
Saxman Guest
|
Posted: Sun Oct 15, 2006 4:35 pm Post subject: Newbie:window.staus |
|
|
Can anybody tell why the following title does not 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 |
|
| Back to top |
|
 |
Evertjan. Guest
|
Posted: Sun Oct 15, 2006 4:43 pm Post subject: Re: Newbie:window.staus |
|
|
Saxman wrote on 15 okt 2006 in comp.lang.java.javascript:
| Quote: | Can anybody tell why the following title does not display in the
status bar?
|
The "title" never displays the status bar.
use:
<script type='text/javascript'>
| Quote: | 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) |
|
| Back to top |
|
 |
Saxman Guest
|
Posted: Sun Oct 15, 2006 4:51 pm Post subject: Re: Newbie:window.staus |
|
|
Evertjan. wrote:
| Quote: | 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. |
|
| Back to top |
|
 |
|