Hi all,

Got a wierd problem here with a relatively simple command and event handler.

Designing a intranet using classic ASP and have a simple Javascript handler to mask the server pathway in the statusbar. The problem is that the status command does not show when the mouse is over the tag text, but shows when the mouse is out.

Checked the CSS and this isnt the issue (Using inhereited CSS2 class framework), and used a standard sttring format rather than avariant array, so that isnt the problem. also tried using this tag format and problem persists onMouseOut= "JAVASCRIPT:window.status='helloworld';"

Ive pretty much exhausted everything

So i'll leave it to you guys to work this one out...

VB Code:
  1. onMouseOver="Commerce()"
  2. 'thsi is the event handler in the html tag that triggers the Javascript function


This is the javascript code that the command calls.

VB Code:
  1. var StatusBar = new Array("Business and Personal E-Commerce Essentials",
  2.         "Home and Business Networking Essentials",
  3.         "Business and Enterprise Infra-Structure Essentials",
  4.         "Home Computing Essentials",
  5.         "Business Computing Essentials",
  6.         "Application Architecture and Design Essentials",
  7.         "Software and Systems Development Essentials",
  8.         "Consulting xxxxxx xxxxxx xxxxxx",
  9.         "")
  10.  
  11. function Commerce() {
  12.    
  13.     window.status=StatusBar[0]
  14. }
  15.  
  16. function Clear_status() {
  17.    
  18.     window.status=StatusBar[8]
  19. }

now as you can see. Abolsutely nothing wrong with this at all. So why the F***K does it not work properly!!!!

Cheers all

Kai