Modal Popup is getting closing when am trying to append the data to its body in jquery
Modal Popup is getting closing when am trying to append the data to its body in jquery Hi friends am trying to append a some data to my modal popup, which comes from the partial view on clicking some button, on clicking the Next button another question should be appended to the popup, and should not close it until user closes it manually, this is a simple test conducting application @model List<Vulpith.Models.View.Test.AdaptabilityViewModel><div> @foreach (var a in Model) { <div>@a.QDescription</div> } <button type="button" class="btn btn-default" onclick="StartTest()">Next</button> am appending above content to the following model on ajax submission <div id="myModal" class="modal fade" role="dialog"> <div class="modal-dialog"> <!-- Modal content--> <div class="modal-content"> <div class="modal-header"> ...