StatusBar events 
Author Message
 StatusBar events

Hi

How can I disable messages in statusbar when I move mouse over links without
hiding the StatusBar.

Regards
Steklov Eli



Mon, 21 Jul 2003 00:23:58 GMT  
 StatusBar events
I dont think it's possible in IE, you make span tags look and behave like A
tags and provide a hidden link for the robots.


Hi

How can I disable messages in statusbar when I move mouse over links without
hiding the StatusBar.

Regards
Steklov Eli



Mon, 21 Jul 2003 08:44:40 GMT  
 StatusBar events

Quote:

> How can I disable messages in statusbar when I move
> mouse over links without hiding the StatusBar.

<script>
defaultStatus="Welcome to mySite.com";
document.onmouseover=Function(
   "if(event.srcElement.tagName=='A'){status=defaultStatus;return true}");
function init(){ var i, x=document.links;
 for (i=0; i<x.length; i++) x[i].onfocus=function()
        {status=defaultStatus;return true}}
window.onload=init;
</script>

- Peter



Mon, 21 Jul 2003 10:17:58 GMT  
 StatusBar events
Hi

How can I disable events that come from explorer onto a StatusBar for example
when I click on Href I dont want to display the URL that I browsing to in
StatusBar.

Regards
Steklov Eli



Mon, 21 Jul 2003 17:25:40 GMT  
 
 [ 4 post ] 

 Relevant Pages 

1. Hiding toolbar/statusbar, etc from vbscript or jscript

2. HTML application and statusbar

3. Change menubar, statusbar, toolbar visibility in Internet Explorer

4. Hide Statusbar

5. disable statusBar !!!!

6. StatusBar In FullScreen Mode

7. statusbar href text...

8. IE5 statusbar

9. Removing menubar, toolbar, statusbar and location combo from IE 5

10. HELP:IE StatusBar

11. StatusBar In FullScreen Mode

12. Hiding the toolbar, statusbar, and URL in IE4 w/ vbscript

 

 
Powered by phpBB® Forum Software