I am working on a post-comments project. Using AJAX I am generating comments. Each generated comments has Like button. But new generated Like button doesn't work until I refresh the page. The generated link is shown below.
<div class="comment-body-container">
    <div class="comment-body">
        Oye jetha lali
        <a class="like-comment comment-like-color comment_main_id_45" 
            data-like-comment-id="45" href="javascript:;">
                <i class="fa fa-thumbs-up"></i>
        </a>
    </div>
    <div class="liked-this-comment liked_this_comment_45"></div>
</div>
Output after refreshing the page.
<div class="comment-body-container">                                                                          
    <div class="comment-body">
        Oye jetha lali                                                                               
        <a class="like-comment comment-like-color comment_main_id_45" 
            data-like-comment-id="45" href="javascript:;">                                                                                  
            <i class="fa fa-thumbs-up" aria-hidden="true"></i>                                                                               
        </a>                                                                            
    </div>                                                                          
    <div class="liked-this-comment liked_this_comment_45">                                                                                                                                                          
    </div>                                                                       
</div>
Output is almost same. But it doesn't work until I refresh the page. Could some one please provide me the solution for it.
 
    