From: Peter R. <ant...@gm...> - 2003-09-25 15:49:58
|
Hi, it doesn't work on ie5 and ie5.5 SP2. BTW: I've set up VirtualPC with the two browsers (that makes testing really easy - a developer's dream!) ;) Regards, Peter Raymond Irving wrote: > This might also be a bug in ie5? > > The cursor property should be available on the style > object. > > When I get ie5 up and running I'll look some more into > the problem; > > > -- > Raymond Irving > > --- Peter Romianowski <ant...@gm...> wrote: > >>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? >> >> >> >> > > ------------------------------------------------------- > >>This sf.net email is sponsored by:ThinkGeek >>Welcome to geek heaven. >>http://thinkgeek.com/sf >>_______________________________________________ >>Dynapi-Dev mailing list >>Dyn...@li... >> > > http://www.mail-archive.com/dyn...@li.../ > > > __________________________________ > Do you Yahoo!? > The New Yahoo! Shopping - with improved product search > http://shopping.yahoo.com > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dynapi-Dev mailing list > Dyn...@li... > http://www.mail-archive.com/dyn...@li.../ > > |