Tema: window.open
Ver Mensaje Individual
  #4 (permalink)  
Antiguo 11/03/2013, 09:54
Avatar de kakashi20
kakashi20
 
Fecha de Ingreso: septiembre-2009
Mensajes: 616
Antigüedad: 15 años, 1 mes
Puntos: 15
Respuesta: window.open

este es el codigo pero lo que decia es que el ajax no se ejecuta

function Cotizar(){

if ( $("#pago").val() == "" || $("#gar").val() == "" || $("#tip").val() == "" ){

alert("Por favor ingrese todos los campos obligatorios");

}else{



window.open("Cotizar_pdf2.php?nit="+ $("#nit").val()+"&pago="+ $("#pago").val()+"&gar="+$("#gar").val()+"&tip=" + $("#tip").val()+"&vig="+ $("#vig").val());



}

$.ajax({



type: 'POST',

url: 'ListadoCesta.php',

data: str,

success:function(msg){




$("#cesta").html(msg)




}



});




}