Ver Mensaje Individual
  #4 (permalink)  
Antiguo 29/09/2009, 18:39
oscar2h
 
Fecha de Ingreso: noviembre-2007
Mensajes: 237
Antigüedad: 17 años, 1 mes
Puntos: 4
Respuesta: accion al cerrar navegador, ayuda

pille lo que quiero, pero no puedo hacer funcionar lo que mas me interesa, esto es que cuando apcerte cerrar, ejecute una funcion especifica, o una archivo php, si pudieras ayudarme, agradeceria montonos, saludos

Código PHP:

var needToConfirm false;

function 
setDirtyFlag()
{
needToConfirm true//Call this function if some changes is made to the web page and requires an alert
// Of-course you could call this is Keypress event of a text box or so...
}

function 
releaseDirtyFlag()
{
needToConfirm false//Call this function if dosent requires an alert.
//this could be called when save button is clicked
}


window.onbeforeunload confirmExit;
function 
confirmExit()
{
if (
needToConfirm)
return 
"You have attempted to leave this page. If you have made any changes to the fields without clicking the Save button, your changes will be lost. Are you sure you want to exit this page?";