evergrean100
Technical User
I need a mouseover on a link where someone puts mouse over and it shows info but I will not be using link just want mouse over.
This attempt shows pop up box with Okay prompt which I dont want:
<a href="" onmouseover="javascript:alert('hi')">here</a>
This gives good pop up message but puts # on end of url if someone clicks on it:
<a href="#" title="hi)">here</a>
Any better way of doing it??