можно ли отменить e.preventDefault()?

я ищу способ .preventDefault() сделать переход, а затем разрешить поведение по умолчанию

$('.withTrans').click(function(e){
    e.preventDeault();
    $(this).animate('opacity','0',300,function(){
           e.resumeDefault();      // does something like this exist?
    });

})
6
задан Toni Michel Caubet 4 March 2012 в 15:26
поделиться