skip to Main Content

Form Element Appended from Ajax not working- – Asp.net

I have this code for form method in ajax $.ajax({ type: "GET", url: "/MainPage/GetAllRecords", dataType: "json", contentType: "application/json; charset=utf-8", success: function (data) { console.log(data); $.each(data, function (key, value) { $("#loadNotes").append( '<form method="GET">' + '<div class="container py-3 px-4" style = "background-color:…

VIEW QUESTION
Back To Top
Search