I have numerous anchor tags on my page that only trigger jQuery actions on the same page.
The don\'t redirect the user to another location, which is the normal expected
if you bind some action on click on you can call preventDefault() to avoid sending user in top of page
$("a.clickable").live('click',function(){$(this).doSome(); $(this).preventDefault()});