I have a repeater that contain a checkbox and I need just to enable some control depend on that checkbox checked status,I used to do so with jQuery using
$("input:checkbox").Click(function(){
alert('Any code');
});
Now I have an updatepanel contain the repeater that have the checkbox
So I need to get the click event
the way I show here doesn't work !! I don't know why ?
I'm using jQuery 1.4.1 and IE9