hi,
function addEvent(obj, eventTyp, func, bul) {
if (obj.addEventListener) {
obj.addEventListener(eventTyp, func, bul);
return true;
} else if (obj.attachEvent) {
var katze = obj.attachEvent("on"+eventTyp, func);
Mit der Funktion läufst du im IE leider in die Falle - weil er bei derartig attach-ten Events in this nicht auf das auslösende Element referenziert.
gruß,
wahsaga
--
/voodoo.css:
#GeorgeWBush { position:absolute; bottom:-6ft; }
/voodoo.css:
#GeorgeWBush { position:absolute; bottom:-6ft; }