i am looking for a way to .preventDefault() to make a transition and then allow the default behavior
$(\'.withTrans\').click(function(e){ e.preventDeault
assuming you are trying to follow a link after the animation is complete:
$('.withTrans').click(function(e){ $(this).animate('opacity','0',300,function(){ window.location= this.href; }); return false; });