I am having this error on line 14 of my script but I can not see the error, if anyone can help, thank you !!
line 14 - > error: function (data) {all code
$(document).ready(function(){
function confLojas(id) {
var resposta = confirm("Deseja realmente remover esse registro?");
if (resposta == true) {
$.ajax({
type:'GET',
url:'../php/deleteLojas.php',
data:'id'+id,
success:function(data){
alert("Registro exluído com sucesso!");
$("#"+id).hide();
}
error:function(data){ //linha 14
alert("Erro!");
}
});
}
}
function confSites(id) {
var resposta = confirm("Deseja realmente remover esse registro?");
if (resposta == true) {
$.ajax({
type:'GET',
url:'../php/deleteSites.php',
data:'id'=id,
success:function(data){
alert("Registro exluído com sucesso!");
$("#"+id).hide();
}
error: function(data){
alert("Erro!");
}
});
}
}
});