fix(select-entries): actually do the ajax request!

This commit is contained in:
Florian Schmitt 2025-02-07 12:54:52 +03:00
parent 0771a2750b
commit df25bfa9ac

View file

@ -153,6 +153,9 @@ document.addEventListener("DOMContentLoaded", function(event) {
data: JSON.stringify({ bf_titre: $('#title').val(), bf_activite: content, id_typeannonce: 21 }),
contentType: 'application/json'
};
$.ajax(settings).done(function (response) {
console.log(response);
});
return false;
})
});