Can anyone provide me solution for how to dynamically add some code into the page in MVC.
I was doing this way but in this code the page fails to identity index javascript variable , as it is not identifying the index javascript variable.
$(document).on('click', '.add-option', function () {           
  var index = $("div.ques-options").size();
  if (index < 5) {
    $('.MainContainer').append('@Html.Partial("_Options", index)')
  }
});
 
     
     
     
    