* Jeff Schiller wrote: >Perhaps you can try evt.currentTarget? That's what seems to work for >me consistently across IE+ASV6, IE+ASV3, Fx1.5 and O9.
Though note that target and currentTarget are quite different, target is the event target (what the event is dispatched to) and currentTarget is what the event listener is attached to, e.g., if you have a bubbling event like 'click' the event might be dispatched to a 'rect' element and the event listener might be registered on a 'g' element that contains the rect, in this case the target is the 'rect' and the currentTarget is the 'g' element. -- Björn Höhrmann · mailto:[EMAIL PROTECTED] · http://bjoern.hoehrmann.de Weinh. Str. 22 · Telefon: +49(0)621/4309674 · http://www.bjoernsworld.de 68309 Mannheim · PGP Pub. KeyID: 0xA4357E78 · http://www.websitedev.de/ ------------------------ Yahoo! Groups Sponsor --------------------~--> Most low income homes are not online. Make a difference this holiday season! http://us.click.yahoo.com/5UeCyC/BWHMAA/TtwFAA/1U_rlB/TM --------------------------------------------------------------------~-> ----- To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" ---- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/svg-developers/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

