G
Gregor Kofler
Trying my widgets on Konqueror 3.5.9/Ubuntu 8.04 gives me the following
error message:
line 172:
Error: DOM Exception 8
The mentioned line contains:
this.layer.removeChild(this.layer.childNodes[this.smartLabel ? 0 : 1]);
Simplifying it with something like:
var n = this.layer.childNodes[this.smartLabel ? 0 : 1];
this.layer.removeChild(n);
yields the same result. alert(n) shows me "object". The widget works in
IE6+, FF, Opera, Safari. Other widgets on my page also feature
removeChild - alas: no error there. Any suggestions or ideas? Googling
for "DOM Exception 8" hasn't provided any meaningful results.
The error can be reproduced by clicking a search-Button on
http://web.gregorkofler.com
Gregor
error message:
line 172:
Error: DOM Exception 8
The mentioned line contains:
this.layer.removeChild(this.layer.childNodes[this.smartLabel ? 0 : 1]);
Simplifying it with something like:
var n = this.layer.childNodes[this.smartLabel ? 0 : 1];
this.layer.removeChild(n);
yields the same result. alert(n) shows me "object". The widget works in
IE6+, FF, Opera, Safari. Other widgets on my page also feature
removeChild - alas: no error there. Any suggestions or ideas? Googling
for "DOM Exception 8" hasn't provided any meaningful results.
The error can be reproduced by clicking a search-Button on
http://web.gregorkofler.com
Gregor