How I can change the cursor CSS property of a link element, so when the user click on that link, the cursor switches from pointer to wait?
jQuery(document).ready(function(){
jQuery('a.cursor_wait').click(function(){
jQuery('body').css('cursor', 'wait');
});
});
This works, but I must move with the mouse from the link to see the wait indicator, when I leave my cursor on the link, I still see the pointer.
How can I make this work without moving my cursor?