How to change cursor from pointer to finger using jQuery? Ask Question

How to change cursor from pointer to finger using jQuery? Ask Question

This is probably really easy, but I've never done it before. How do you change your cursor to the finger (like for clicking on links) instead of the regular pointer?

And how to do this with jQuery since that's what I'm using it for.

ベストアンサー1

$('selector').css('cursor', 'pointer'); // 'default' to revert

I know that may be confusing per your original question, but the "finger" cursor is actually called "pointer".

The normal arrow cursor is just "default".

all possible default pointer looks DEMO

おすすめ記事