I’m currently using <a> tags with jQuery to initiate things like click events, etc.
An example of what I’m doing is: <a href="#" class="someclass">Text</a>.
But I dislike how the ‘#’ makes the page jump to the top of the page. What can I do instead?
In jQuery, when you handle the click event,
return false to stop the link from responding the usual wayprevent the default action, which is to visit thehrefattribute, from taking place (per PoweRoy’s comment and Erik’s answer):