Do not use links unless they are ... well, a link to something.
Instead, use span somewhat like this:
<span class="spanlink" onclick=something>This is some text</span>
And in your CSS:
.spanlink { text-decoration: underline; color: blue; cursor: pointer; }
source share