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?
Add the title for the tag anchor
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;
}
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.