It is possible to get the current cursor type without predefined cursor style, like when the mouse pass over text, link..
Something like that :
document.addEventListener('mouseover', (e) => {
console.log(e.'cursorType')
});
I would like to get in the console.log the state of the cursor like : pointer, text, move, wait...
I find some kind of solution in jQuery but I am looking for one in pure vanilla JS
Thank for your answer