here is my code :
<script>
    $(document).ready(function(){
        $(".checkbox").change(function(){
            alert("test")
        });
        $(".loadInto").load("test.php");
    }
</script>
<td id="loadInto" > </td>
test.php script return this code :
<input type="checkbox" class='checkbox'/>
I succeed to load the input checkbox but when I press on the checkbox, I didn't get alert. why ?
 
     
    