Is there a way to make the cursor change on a specific event without manually specifying every element that needs to change? For example, I want the cursor to switch from pointer to progress for all elements without having to list them individually like this:
a, input[type='button'], button {
cursor: progress;
}
I just want a simple solution to replace the cursor from pointer to progress universally. Is this achievable with JavaScript or any other method? If so, please provide guidance. Thank you in advance!