Strange, is there no possibility to put several binds in jquery, on one element?
$('input').click(clickfn).click(clickfn)
I am using 1.3.2
function clickme() { alert('click me') }
$('.click', mod).bind("brrr", clickme).bind("brrr", clickme)
.click(function() { $('.click', mod).trigger("brrr"); });
This is not working also. Executes one time.