I have a big function defined and executed on an element click. Is there a way to execute again that "big" function later, call it somehow, without writing it again?
$('#element').click(function(big){
some big function
...
...
});
$('#another_element').click(function(){
this should execute the previous "big" function
});
Thanx.