Good evening,
I am creating a CMS
based on bootstrap
php
and ajax
what happens to me and that I can send the data of form
all method POST
minus the value of textarea always returns empty I'm using tinymce
as an html editor.
Code used
<script>
$(document).on("click", "#novo", function(e) {
var postData = $("#form_novo").serialize();
var titulo = $("#titulo").val();
var url = $("#url").val();
if(titulo === '' || url === ''){
toastr.error('Preencha os campos obrigatórios!', 'Campos');
}else{
e.preventDefault();
$.ajax({
type: "POST",
url: "modulos/footer/guardar.php",
data: postData,
cache: true
}).done(function(msg) {
toastr.success('Dados guardados com sucesso!', 'Footer');
}).fail(function(data) {
toastr.error('Ocorreu um erro!', 'Erro');
});
}
});
</script>