Is there any event which is triggered when the mouse cursor changes as it hovers over different page elements ?
Ideally an event like this:
window.onmousecursorchange = function(e) {
// e would contain information about the cursor
// eg. e.type could contain 'text','pointer', etc..
}
Note: The solution should not involve jQuery or other libraries
Update:
The 'possible duplicate' question is tagged with jQuery infact all the answers (none of which solve the problem) are based on jQuery. I am looking for a pure JavaScript solution. If the moderators believe this is not enough reason to keep this question open feel free to close.