well, if there is only one function binded to the object, and only will be one, why do you need to check if there is an event bound to it?
sken wrote:
The click event should only trigger ONE function. I use a lot of ajax content and for some reason, it happens that on one object (#login) there a several click bindings. It's not visible for the user but in the console. So i would be nice if there would be some kind of check like .... var test = $("#login").binding("click"); //is there already a binding ? If(!test) $("#login").bind("click"); //no, bind the click event ...