jquery opposite of event.preventDefault()

I want to hold an event until I am ready to fire it e.g

$  ('.button').live('click', function(e){

   e.preventDefault(); 

   // do lots of stuff

   e.run() //this proceeds with the normal event    

}

is there an equivalent to the run() function described above?

newest questions tagged jquery – Stack Overflow

About Admin