So I'm trying to change the cursor to wait for some page to load.
I thought this was possible with css, I try to achieve this when someone clicks on some link, so I have this:
#something a:hover { cursor: hand; }
#something a:active { cursor: wait; }
But it doesnโt work, itโs a hand at link building, and when the second waits, but I want this wait to continue until a new page appears.
So my question is: Is this wrong? To achieve what I want?
Or do I need to use javascript?
pavid source
share