I am adding a click event (display alert on click) to a html hyperlink inside an UpdatePanel on document(ready). However, the event never gets fired when I click the hyperlink. Is it because of ASync postback? What is the correct way to do this?
$(document).ready(function(){
$('#addExcl').click(function(){
alert('asassasaas');return false;
});
});