This commit is contained in:
2023-07-31 15:45:33 +03:00
parent 968f9e5ab2
commit 7e4e1a3563
7 changed files with 43 additions and 15 deletions

View File

@@ -0,0 +1,18 @@
function createTicketShow () {
$.ajax({
headers: { "X-CSRFToken": $('input[name=csrfmiddlewaretoken]').val() },
url: '/ru/user_account/support_create_ticket_ajax/',
type: "POST",
// async: true,
cache: false,
processData: false,
contentType: false,
// enctype: 'json',
// data: formData,
success: function(data){
document.querySelector(".insert-tech-place").innerHTML = data.html;
},
});
}