haw can I write something in the status bar.....in the left side.....nearby the iexplorer icon.....
haw can I write something in the status bar.....in the left side.....nearby the iexplorer icon.....
With javascript:
Code:<span onmouseover="window.status='Hello World';" onmouseout="window.status='';">HI</span>
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
The Title bar and can be accessed in HTML
or JavascriptCode:<TITLE>HERE...</TITLE>
Code:document.title = "HERE...";
EDIT: Sorry. I'll make sure I understand questions from now on. Just trying to juggle javascript and finals!
Last edited by Bob90; 05-07-2007 at 01:54 PM.
In IE 7 that could be right for this question (it could even be the address bar if no favicon other than the default is being displayed), even in IE 6 and less except that in those browsers the status bar also has the explorer icon. But, I think cretzunm really meant the status bar when cretzunm typed 'status bar'.
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
thanks jscheuer1, i've anderstood my qestion, but i have a little problem.....i'm a beginer and i've recived a site from somebody....and his name apear on the status bar and theat disturb me
i'm from roumania-europe, sorry my english is bad
The easiest way for me might be to have a link to the site. But, if having his name there is part of the agreement, removing it is illegal, as is taking the content without permission. In these forums, we are not allowed to advise folks in illegal matters.
Is the site legally your site? Are you legally allowed to remove his name?
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
ok www.jida.ro
i made the curent view af the site, so it is legal for me to modifie the site,
but.....again....i'm a beginer......
thank's allot....
and yes is my site, i'm paing (pay money) for the domain, and ai administrate the site......
thank's again
Code:<!-- Hide from old browsers message = "WELCOME^" + "TO JIDA SRL^" + "Webdesign by arman_valeriu@mmc.ro^" + "http://servicetv.mmc.ro^" + "^" scrollSpeed = 150 lineDelay = 1500 txt = "" function scrollText(pos) { if (message.charAt(pos) != '^') { txt = txt + message.charAt(pos) window.status = txt pauze = scrollSpeed } else { pauze = lineDelay txt = "" if (pos == message.length-1) pos = -1 } pos++ setTimeout("scrollText('"+pos+"')",pauze) } scrollText(0) // Unhide -->
OK I got bored, here is another version
Code:<script> <!-- Hide from old browsers var message = ["WELCOME", "TO JIDA SRL", "Webdesign by arman_valeriu@mmc.ro", "http://servicetv.mmc.ro"]; var scrollSpeed = 150; var lineDelay = 1500; var line = 0; var pos = 0; function scrollStatusText(pos) { if (pos < message[line].length) { window.status = message[line].substring(-1,pos+1); pauze = scrollSpeed; pos++; } else { pauze = lineDelay; line = (line+1)%(message.length-1); pos=0; } setTimeout(function(){scrollStatusText(pos)},pauze); } scrollStatusText(0); // Unhide -->![]()
Bookmarks