I\'ll try to explain the problem with a simple code.
var fireClick = function() { alert(\'Wuala!!!\') }; $(\'#clickme\').click(fireclick); $(\'#clickme\').c
I would try to eliminate the extra calls, but short of tyhat you could make sure to call both of these each time:
$('#clickme').unbind('click', fireclick); $('#clickme').click(fireclick);