Here's some code that stores the mousedown source and redirects the mouseup event so that both browsers now act in the same fashion.
DynEvent.focus=src; // add this as a static property of the DynEvent
// add the following code just before the "src.invokeEvent(type,
evt);" line
if (is.ie) {
if (e.type=='mousedown') DynEvent.focus=src;
else if (e.type=='mouseup' && DynEvent.focus!=null)
evt.src=src=DynEvent.focus;
};
Does anyone think this is worth placing in CVS?
--
Michael Pemberton
[EMAIL PROTECTED]
ICQ: 12107010
