if ((typeof data.responseText != 'undefined') && (data.responseText != null)) { $erro = $erro + ': ' + data.responseText; } $("#div-msg-button-cadastro-novidades").html(' ' + $erro).show(); newContatoClear(false); } }); } function loadListCategoriasLoja(list) { if ((typeof $("#select-tipo-evento") != 'undefined') && ($("#select-tipo-evento") != null)) { var total = list.length; if (total > 0) { for (var i = 0; i < total; i++) { var option = '' $("#select-tipo-evento").append(option); } } } } function openNewMultiplosRegulamentos(){ let html = ''; for(let i in listRegulamento) { html += ''; } if (html == '') { $('#divListResultados').html("
Nenhum registro encontrado!
"); return false; } $('#divListResultados').html("
"+html+"
"); $('#ModalListResultados').modal('show'); }