I want to disable a decoration in any hyper link means when we hover a link then we get a hand symbol instead of mouse cursor. I want to disable it .Whenever i hover mouse on a link it should just show mouse cursor but not hand symbol.
You can use the CSS cursor
property to get this.
default
to get a pointer like when not hovering over any texttext
to get a text-selection cursor like when hovering over non-link texta {
cursor: default;
}
Example: http://jsfiddle.net/Nc5CS/
a
{
cursor:default;
}
Arrow is default symbol for hover on link.So use cursor:default if cursor is other than arrow or hand.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With