$('.your_class').unbind('click');
$('.your_class').click(function(){
// Your code
});
$("#el").click(function(e){
//Some code
});
document.getElementByID("el").onclick = function(e) {
//Some code
}
<a href="#" onclick="myFunc();">Click</a>
function myFunc(){
alert('100% clicked');
}
Find more questions by tags jQuery
this. thank you! - Noe.Zemlak commented on September 19th 19 at 00:24