Uncaught SyntaxError: Unexpected identifier

0

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!");
       }
     });
   }
 }
});
    
asked by anonymous 11.04.2017 / 15:44

1 answer

3

The comma is missing before the error , in both cases.

success:function(data){
    alert("Registro exluído com sucesso!");
    $("#"+id).hide();
},
error:function(data){ //linha 14
    alert("Erro!");
}
    
11.04.2017 / 15:46