I have a jquery click function like this :
$( "#kirimKririk" ).click(function() {
alert("test klik");
});
and this function provides event onclick on this html tag :
<input type="button" value="Kirim Komentar" id="kirimKritik"/>
Unfortunately that click function does not work at all..
I've checked the html tags on that page, moreover I use the application TagCheck HTML/XML to check html tags, and no error messages.
Anyone can give suggestions what else should I check?