I have introduce a part of the html by Ajax.
my html
<div class="article-feed">
    // html is loaded here.
</div>
ajax
var url = 'getpageplaceinfo/0';
$.ajax({
    type:'GET', 
    url: url, 
    dataType: 'html'
}).done(function(data){
    $('.article-feed').append(data); 
}   
It load the html like this here
myname        
<input type="checkbox" name="place" value="1">
it load the checkbos correctly, but when I tried to get the move of checkbo , it doesn't work
$('input[name=place]').on('change', function(){
// not being called
Is it correct behaivor??
or How can I handle the dynamically loaded input??
 
     
     
     
    