| Server IP : 23.111.136.34 / Your IP : 216.73.216.136 Web Server : Apache System : Linux servidor.eurohost.com.br 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : meusitei ( 1072) PHP Version : 5.6.40 Disable Function : show_source, system, shell_exec, passthru, proc_open MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/meusitei/public_html/painel/assets/scripts/ |
Upload File : |
<script>
$('#add').click(function() {
var pt = $('.pt').val();
var en = $('.en').val();
var es = $('.es').val();
var it = $('.it').val();
if (pt == ''){
} else{
$.post("<?php echo HOME_URI; ?>imobiliaria/detalhes/get/", {pt: pt}, function(data) {
if (data == 1) {
//$('.atencao_existe').modal('show');
$('.corpoalerta').html('<p class="alert alert-danger"><?php echo $alerta['cadastro_ja_existe'] ?></p>');
$('.janelaalerta').modal('show');
}
if (data == 0) {
$("body").scrollTop(0);
$('#progerro').hide();
$('#usernmb').removeClass('has-error');
$('#usernmb').addClass('has-success');
$('#texterro').html('')
$('#prog1').css('display', 'block');
var interval = setTimeout(function() {
$('#prog2').css('width', '10%');
}, 500);
var interval1 = setTimeout(function() {
$('#prog2').css('width', '20%');
}, 700);
var interval2 = setTimeout(function() {
$('#prog2').css('width', '40%');
}, 1000);
var interval3 = setTimeout(function() {
$('#prog2').css('width', '80%');
}, 1200);
var formdata = $(".formuseradd").serialize();
//alert(formdata);
$.post("<?php echo HOME_URI; ?>imobiliaria/detalhes/update/", formdata, function(data) {
clearInterval(interval);
clearInterval(interval1);
clearInterval(interval2);
clearInterval(interval3);
$('#prog2').css('width', '85%');
$('#frasealertok').html('Usuário criado.');
$('#prog2').css('width', '100%');
$('#prog1').hide();
$('#progok').show();
window.location.href = '<?php echo HOME_URI; ?>/imobiliaria/detalhes/';
});
}
});
}
});
</script>