Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/06/2012, 00:03
IXtremeLT
 
Fecha de Ingreso: julio-2011
Ubicación: Zapopan, Jal. MX
Mensajes: 316
Antigüedad: 13 años, 6 meses
Puntos: 32
Respuesta: Preguntar antes de cerrar una ventana

Me parece que si funcionaria, pruebalo asi
Código Javascript:
Ver original
  1. window.onbeforeunload = confirmaSalida;  
  2. window.onunload = salida;  
  3.  
  4.     function confirmaSalida(event)  {
  5.  
  6.         if($("#thumbnails > div").length>0){
  7.                 $.ajax({
  8.                         url:   'cancelar_imagenes.php',
  9.                         type:  'post'
  10.                 });
  11.         }
  12.             var textillo = "Los datos que no se han guardado se perderan.";
  13.             alert(textillo);
  14.             try { event.preventDefault(); } catch(err){ window.event.returnValue = false; }
  15.     }
  16.  
  17.     function salida()  {
  18.  
  19.         if($("#thumbnails > div").length>0){
  20.                 $.ajax({
  21.                         url:   'cancelar_imagenes.php',
  22.                         type:  'post'
  23.                 });
  24.         }
  25.     }