Menu

#269 FireFox: Mouseover can not work with the tag <a title = "">

Unverified
open
nobody
7
2007-08-24
2007-08-24
BinhTruong
No

Try to modify <a title = "Display title" class="testClass" href="#" onclick="make10()">make 10 nested layers</a><br /> in the file 10_deep_nesting.html

The 'Display title' doesn't display when trying to move the mouse over href.

I think the root cause is 'dynapi.event.*' is not created. If I remove this line, the 'Display title' displays.

Can you suggest me the way to solve it?

Discussion

  • BinhTruong

    BinhTruong - 2007-08-24

    Add the title for the tag anchor

     
  • BinhTruong

    BinhTruong - 2007-08-24
    • priority: 5 --> 7
     
  • BinhTruong

    BinhTruong - 2007-09-05

    Logged In: YES
    user_id=1874614
    Originator: YES

    The root cause comes from the checking of the condition in the function DynMouseEvent.EventMethod of the dynapi\src\lib\dynapi\event\mouse.js

    Old code: if (is.ie) var e=dynobject.frame.event
    e.cancelBubble=true;

    Fixing code:
    if (is.ie) {
    var e=dynobject.frame.event
    e.cancelBubble=true;
    }

     
  • BinhTruong

    BinhTruong - 2007-09-05

    Logged In: YES
    user_id=1874614
    Originator: YES

    The bug has been verified and a fix for the bug has been
    implemented. The fix should be available in CVS as well as the
    next official release of the DynAPI.

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.