You can try using jQuery.
$(node).css('cursor', 'wait');
Or play with changing classes dynamically.
css will be:
span.auto {cursor:auto} span.wait {cursor:wait}
javascript will be:
$(node).removeClass('auto'); $(node).addClass('wait);
Simondever
source share