change cursor to finger pointer
Solution 1:
<a class="menu_links" onclick="displayData(11,1,0,'A')" onmouseover="" style="cursor: pointer;"> A </a>
It's css.
Or in a style sheet:
a.menu_links { cursor: pointer; }
Solution 2:
You can do this in CSS:
a.menu_links {
cursor: pointer;
}
This is actually the default behavior for links. You must have either somehow overridden it elsewhere in your CSS, or there's no href
attribute in there (it's missing from your example).
Solution 3:
I like using this one if I only have one link on the page:
onMouseOver="this.style.cursor='pointer'"
Solution 4:
in css write
a.menu_links:hover{ cursor:pointer}