I want to thanks those who are currently reading this and for your time. Let\'s go straight to the topic!
I am currently trying to disable a feature where a user sho
You could bind an event handler to the desired link element and use jQuery's .preventDefault() method to cancel the link going anywhere. Your code would look something like this:
.preventDefault()
$('a').click(function(event){ event.preventDefault(); });