Please help me find where the errors are: the page is not fully rendered + the modal window crash does not work by clicking on the "Check result" button:

var retObj = JSON.parse(localStorage.getItem("object")); var html = $('#test').html(); var content = _.template(html)(retObj); $("body").append(content); https://plnkr.co/edit/3hzJzYxMOJv4YoGjgC7m?p=preview 

    1 answer 1

    There was a lack of a closing angle bracket for <label .. > :

     <label for="<%= questions[i].id[j] %>"><%= questions[i].answers[j] %></label> 

    Therefore, no text was visible.

    And the modal window did not open, because there was a lack of an opening angle bracket for the div tag:

     var modal = $("<div class='modal'></div>"); 

    The corrected code on plunker