I have a ajax post request, which dynamically loads some math content like below
// post comment
    $post_comment.on("click", "[data-submit='post-comment']", function() {
        $.ajax({
            success: function(response) {
                if(response.success) {
                    $('#comment-list').load(' ' + '#comment-list');
                    MathJax.Hub.Queue(["Typeset",MathJax.Hub, "comment-list"]);
                }
            },
        });
   });
The mathjax command above mentioned is unable to render the math script loaded dynamically. While when I execute the same command on command-line, its working!!
It would be nice if someone explains why this is happening and how to fix
 
    