I'm trying some experiments, including seeing if there are different
answers depending on the browser type (especially IE6 vs IE7) and will
post my results if anybody is interested.
Thanks,
David
You should -
Event.observe(document.body,'click',function(event){
var target = event.target || event.srcElement;
Element.extend(target);
if(target.hasClassName("employee") === false &&
target.descendantOf("peoeple") === false) return;
//Your code
});