To check whether the event exists on element is possible with jQuery function date(). For example there is a form and if I need to bind an event submit() but before check submit event exists on element.
if(!$('#form').data('events.submit')){
$("#form").submit(function(){
//do submit action
return false;
});
}
