|
From: Peter R. <ant...@gm...> - 2003-09-24 19:38:10
|
Hi,
using a custom cursor results in a js-error. I isolated the line in dynlayer_ie.js
It's line 33:
elm.style.cursor=(this._cursor||'auto');
The browser says "property not defined: cursor" (translated from german ;)
Because that "crashed" my whole page (no js executed anymore) I changed that
part of the code to:
if (elm.style.cursor) {
elm.style.cursor=(this._cursor||'auto');
}
Now the site works (without the custom cursor which is ok for me). I do not
propose this as a solution to the problem - it's just a workaround and I am
too lazy to hunt the problem down ;)
Generally it is possible to change the cursor shape in ie5+ according to
http://www.webreference.com/js/tips/991129.html (tested it)
Greetz,
Peter
..: BTW: When will there be the next release of dynapi3x?
|