Is it possible to set the cursor to \'wait\' on the entire html page in a simple way? The idea is to show the user that something is going on while an ajax call is being com
css: .waiting * { cursor: 'wait' }
.waiting * { cursor: 'wait' }
jQuery: $('body').toggleClass('waiting');
$('body').toggleClass('waiting');