send to another page after AJAX

1

After AJAX was done I wanted to give the "success" message opened a new tab.

AJAX:

$.post('registo-entrada.php',{ 
                id_ficha:id_ficha, 
                equip_ficha:equip_ficha, 
                pw_ficha:pw_ficha, 
                so_ficha:so_ficha, 
                categ_ficha:categ_ficha, 
                avaria_ficha:avaria_ficha, 
                orc_ficha: orc_ficha,
                peri_ficha:peri_ficha, 
                data_ficha:data_ficha, 
                mala_ficha:mala_ficha, 
                bateria_ficha:bateria_ficha, 
                carregador_ficha:carregador_ficha, 
                obs_ficha:obs_ficha, 
                backup_ficha:backup_ficha,
                contribuinte:contr
            },
            function(data)
            {
                if(data == "fail")
                {
                    sweetAlert('Erro', 'Entrada recusada!', 'error');

                }else
                {
                    window.open("ficha-tecnica.php?id_ficha="+id_ficha,'_blank');
                    swal('Sucesso!', 'Entrada realizada com sucesso!', 'success');

                }
            });
    
asked by anonymous 13.05.2016 / 18:04

1 answer

0

just reverse the order of the commands!

swal('Sucesso!', 'Entrada realizada com sucesso!', 'success');
window.open("ficha-tecnica.php?id_ficha="+id_ficha,'_blank');
    
13.05.2016 / 19:51