Disable hand symbol when hovering over a link

css, html

Solution

You can use the CSS `cursor` property to get this.

- Use `default` to get a pointer like when not hovering over any text

- Use `text` to get a text-selection cursor like when hovering over non-link text

a {
    cursor: default;
}

Example: http://jsfiddle.net/Nc5CS/

Problem

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.

Original source