Usage:
$('#myDiv').bindExist('click');//return false
$('#myDiv').bindExist('click.myNS');//return false
$('#myDiv').bind('click.myNS',function(){alert('Plop!');});
$('#myDiv').bindExist('click');//return true
$('#myDiv').bindExist('click.myNS');//return true