I'll try to explain the problem with a simple code.
var fireClick = function() { alert('Wuala!!!') };
$('#clickme').click(fireclick);
$('#clickme').click(fireclick);
So now it will obviously alert 2 times but i need it alert only once. Tried so many ways, but no result.
Thanks.