xtophe
Junior Member
Posts: 2
Registered: 11/3/2004
Member Is Offline
|
| posted on 11/10/2004 at 08:57 PM |
|
|
Linking bug in IE5?
Instead of a plain names, I've put IMG-tags in the array of MENU_ITEMS:
Example:
var MENU_ITEMS =[['<img src="button_one.png" /> (etc. etc.)
This works fine on ALL browsers! :-) At least... I thought so!
As it seems, IE 5 does NOT actually OPEN the URL when clicked on!!! When clicking it does show the 'hand'-pointer, it does show the URL in
the statusbar. But nothing else happens.
The URL DOES open when clicked outside the image but INSIDE the 'box' (The item-area is a bit larger than the image)... so I regard it as a
IE-5-bug (??)
FYI: It DOES work on Apple's Safari, IE6, and PC's IE, Firefox. It's just IE version 5 which seems to have that particular problem.
FYI2: The image-tag I put in is in fact a bit more complex: it has an onmouse-over and onmouse-out event inside:
var MENU_ITEMS =[['<img id="button15" alt="Events" src="button.png" onmouseover="button15.src =
\'button_hover.png\'; return true" onmouseout="button15.src = \'button.png\'; return true"
border="0" />'
Anybody else experienced this too?
|
|
|
|