Кроме того, рекомендую помимо return false сделать e.preventDefault
$(document).on('click','a[href]',function(e){
if ( typeof e != 'undefined' && typeof e.preventDefault == 'function') {// Hi, IE!
e.preventDefault();
}
/* some code */
return false;
});