hello people here is my ajax output...
$(function(){
    //after ajax request
    success:function(data){
        $('#inbox').html('<div class="inbox_user"  id='+data+'>'+data+'</div><br>')
    }
})
Div is creating successfully,so Iam very sure no issues with ajax code....but now i have to give click event to class .inbox_user ,,,its not working with no error message on console... click event for #inbox works fine.....  any idea to fix this??
i am trying in normal way $('.inbox_user').click(function(){})
 
    