I use the following in my web app to give feedback, that something is currently loading:
jQuery(document).ajaxStart(function(){
jQuery('body').css('cursor', 'wait');
});
jQuery(document).ajaxStop(function(){
jQuery('body').css('cursor', 'auto');
});
Unfortunately this seems to have a bad side-effect in Chrome (Linux v20) when it comes to select fields: the position jumps
you can see it here: http://jsfiddle.net/Riesling/4QCL3/
Is there a way to avoid this behavior?