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?
How do you change your cursor to the finger (like for clicking on links) instead of the regular pointer?
This is very simple to achieve using the CSS property cursor, no jQuery needed.
cursor
jQuery
You can read more about in: CSS cursor property and cursor - CSS | MDN
.default { cursor: default; } .pointer { cursor: pointer; }
default pointer