If there is no link do you need to have the cursor at all, you could use <span> instead, if you do want a pointer you can add the default pointer to the span style, you could also underline/highlight the text.
Create a class for <span>
HTML Code:
<style>
span.tooltip{
cursor: default;
}
</style>
Then use it like this
HTML Code:
<span class="tooltip" onmouseover="doTooltip(event,0)" onmouseout="hideTip()">Link 1</span><br>
<span class="tooltip" onmouseover="doTooltip(event,1)" onmouseout="hideTip()">Link 2</span>
You could add to the style to highlight the text.
Bookmarks