Another way to prevent your browser from sending an HTTP request using the HREF link is to simply override it using javascript and jquery. It may be useful if you do not want to always use hashtags, as Loamhoof suggested.
Example:
$('#linkID').on('click', function(event) { event.preventDefault(); backboneRouter.navigate($(event.currentTarget).attr('href'), { trigger:true }); });
source share