Stack Overflow en español Asked by elvis agreda on February 11, 2021
estoy intentando guardar mi post en la base de datos pero me sale un error cuando le doy a mi boton "Uncaught TypeError: Cannot read property ‘instances’ of undefined" me dice que no esta definido el "Instances" intente guardarlo entre comillas y cochertes pero me seguia dando error agredesco la ayuda
$('.btnSavePost').on("click", function (e) {
e.preventDefault();
var description = CKEDITOR.instances.txtDescription.getData(),
name = $('.txtNamePost').val().trim(),
category_id = $('.txtCategoryPost').val().trim();
if (description !== "" && name !== "" && category_id>0) {
//ajax para subir la publicacion
var formData = new FormData($("#new_post_container")[0]);
formData.append("description", description);
$.ajax({
xhr: function () {
var xhr = new window.XMLHttpRequest();
xhr.upload.addEventListener("progress", function (evt) {
if (evt.lengthComputable) {
var percentComplete = evt.loaded / evt.total;
percentComplete = parseInt(percentComplete * 100);
}
}, false);
return xhr;
},
type: "POST",
url: root + "res/php/admin_actions/new_post.php",
data: formData,
processData: false,
contentType: false,
beforeSend: function () {
//nada
},
success: function (data) {
alert("Se subio el post.");
},
error: function () {
alert("Error...");
}
});
}
});
Edit: ya esta importado como muestra en la siguiente foto
Get help from others!
Recent Questions
Recent Answers
© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP