I have this page that does some funky database stuff that takes a couple seconds to process, and in the meantime I\'d like to set a \"wait\"
cursor so the user
I tried everything but finally this jquery worked, especially if you want wait cursor over all elements including buttons and links.
define at the top of angular .ts file
declare var $: any;
and then where ever you want wait cursor:
$('*').css('cursor','wait');
and remove wait:
$('*').css('cursor','auto');