If you're using the JavaScript onclick event from your <A> elements, just add a return false; statement at the end of the event handler. <a href="#" onclick="doSomething()">GO</a> would become <a href="#" onclick="doSomething();return false;">GO</a>.
If you're using traditional links, you may...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.