posted 22 years ago
It depends on the browser.
IE implicity passes an event object to any event handler and you can access its srcElement property.
Netscape doesn't pass that element implicitly, but you can force it by specifying it as a parameter to your handler. Since this doesn't hurt anything in IE, doing it this way will work in both browsers.
Then in your handler...
[ February 13, 2002: Message edited by: Bodie Minster ]