While waiting for a response from a .load(), is there any way to change the cursor to the busy/wait cursor?
Try:
Updated to work with jQuery 1.8 +
$(document).ajaxStart(function() { $(document.body).css({'cursor' : 'wait'}); }).ajaxStop(function() { $(document.body).css({'cursor' : 'default'}); });
Cursor changes on any ajax start and end. That includes .load().
.load()
Try out the different cursor styles here:
https://developer.mozilla.org/en-US/docs/Web/CSS/cursor
2.1m questions
2.1m answers
60 comments
57.0k users