Popup_Events.prototype.controlobj_onmouseout = function(e) {
var t = this;
var timer = window.setTimeout(function() {
this.closemenu(this);
}, 200);
};
das ist Mist! Es muss natürlich so lauten:
~~~javascript
Popup_Events.prototype.controlobj_onmouseout = function(e) {
var t = this;
// Das Speichern des Rückgabewertes in "timer" könnte hier entfallen.
var timer = window.setTimeout(function() {
t.closemenu(t);
}, 200);
};
Liebe Grüße,
Felix Riesterer.
--
ie:% br:> fl:| va:) ls:[ fo:) rl:° n4:? de:> ss:| ch:? js:) mo:} zu:)
ie:% br:> fl:| va:) ls:[ fo:) rl:° n4:? de:> ss:| ch:? js:) mo:} zu:)