You could always use CSS to set the cursor property to 'wait'.

#myelement {
  cursor: wait;
}

Or use jQuery to set it

$('#myelement').css('cursor', 'wait');



On Mar 3, 7:32 am, ryszard99 <[EMAIL PROTECTED]> wrote:
> hi there,
>
> i've just started doing jquery stuff and am interested in how i can
> add a loading image that will follow the mouse pointer, pretty much
> exactly how cluetip does it.  actually i'm using cluetip in my site
> and would like to replicate the loading image functionality..
>
> if someone could point a n00b in the right direction i'd appreciate
> it.
>
> regs
> .r99

Reply via email to