Я ищу способ .preventDefault () сделать переход, а затем разрешить поведение по умолчанию
$('.withTrans').click(function(e){
e.preventDeault();
$(this).animate('opacity','0',300,function(){
e.resumeDefault(); // does something like this exist?
});
})