faqts : Computers : Programming : Languages : JavaScript : Images

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

27 of 54 people (50%) answered Yes
Recently 4 of 10 people (40%) answered Yes

Entry

How do I get an OMOUSEOVER status change for an AREA element?

Sep 10th, 2000 21:25
Ric Gates, Martin Honnen,


Using the standard
  <AREA ONMOUSEOVER="window.status = 'Kibology'; return true'" ...>
unfortunately fails with IE5 (works correctly in IE4, not supported in 
IE3). It seems to be a timing issue as a short delay works
  <AREA ONMOUSEOVER="setTimeout('window.status = \'Kibology\';', 1); 
return true;" ...>