> obj.style.cursor to "wait". Once the AJAX call is done, change > obj.style.cursor back to "default". I have not tested this broadly. I
I tried this today with the play buttons etc. But problem seems to be that we're using too many layers of divs with their own styles applied, overwriting the cursor style again. I'll have to play with what item must see the style applied. > did find some sites that outline what cursor values are supported by > which browsers, but don't have the URLs handy. http://de.selfhtml.org/css/eigenschaften/anzeige/cursor.htm - it's German, but jost move your mouse over the various items. BTW: you should use prototypejs or ExtJS for all that AJAX stuff. It eases live a lot :-). $('mydiv').style.cursor = "wait" would probably be all you need with prototypejs Ext.Get('mydiv').applyStyles({cursor :"wait"}) in ExtJS. -- Michael _______________________________________________ beta mailing list [email protected] http://lists.slimdevices.com/lists/listinfo/beta
