There is a
<input type="checkbox" name="option2" id="checkbox_3" value="3" />
I tried this code
<script type="text/javascript">
$(document).ready(function () {
$('input[id*="checkbox_"]').click(function () {
alert('!!!');
});
});
</script>
but no success.
Any clue?
Thank you!
I guess you have not included jQuery.
Put this before (and outside of) your script tag