|
I replied
to this a long time ago... on the wrong thread... oops. Glen's got it right Rick. Here's my old reply for what it's worth. --------- obj.style.cursor = default; // arrow obj.style.cursor = pointer; // the little hand. could put "hand" but that's an IE only deal. don't do it. obj.style.cursor = wait; // hour glass. obj.style.cursor = move; // i *think* this one is the compass rose lookin' icon. obj.style.cursor = help; // this is the regular default arrow with a "?" superimposed. ... there are others, but "default", "pointer", and "wait" are the ones you'll prolly use most. a jQuery way of doing this would be something like: $("td").css("cursor","pointer");Glen Lipka wrote:
|
_______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
