I appended the checkbox input field from javascript. after that, I need to catch click event of that checkbox field. But I could not. I tried with these following instruction:
 - An append in jquery code and click function?
 - jQuery 1.9 .live() is not a function. 
This is my code
var htmlData='<input type="checkbox" name="is_pay[]" class="is_pay">';
$('.container').append(htmlData);
$('.is_pay').on('click', function(){
        alert('hi');
});
 
     
     
    