Personnel could someone help me with the following error.
I am doing an Audit page for a system only that javascript is giving error.
Here'smyfunctioninJS
$(document).ready(function(){$('[name="btn_detalhes"]').click(function () {
var cadastroId = $(this).attr('CadastroId');
var patientId = $(this).attr('data-content');
$.ajax({
method: 'POST',
url: '/Formulario/Cadastro/VerificaDiff',
data: { 'PatientId': patientId, 'CadastroId': cadastroId },
success: function (response) {
var t = response.splice(",");
var t1 = t[0].splice(',');
var t2 = t[1].splice(',');
if (t1.length > 0 && t2.length > 0) {
$('#msgLoading').fadeIn(0);
$('.small.modal.Detalhes').modal({
closable: false,
blurring: true,
}).modal('show');
for (var i = 0; i < t1.length; i++) {
$('#trInser1').append('<p> ' + t1[i] + ' </p>');
$('#tdInser2').append('<p> ' + t2[i] + ' </p>');
}
$('#msgLoading').fadeOut(0);
} else {
notif({
'type': 'error',
'msg': 'Não foi encontrado modificações no formulário!',
'position': 'center'
});
}
},
error: function (response) {
notif({
'type': 'error',
'msg': 'Erro na resposta do servidor!',
'position': 'center'
});
}
})
});
$('.btn_ok').click(function () {
$("p").remove();
$('.small.modal.Detalhes').modal('hide');
});
});