Popular Posts

Sunday, June 10, 2012

show alert before close the window by javascript


window.onbeforeunload = function (evt) { 
  var showmessage = 'Are you sure you want to leave?'; 
  if (typeof evt == 'undefined') { 
    evt = window.event; 
  } 
  if (evt) { 
    evt.returnValue = showmessage; 
  } 
  return showmessage ; 
}  

No comments:

Post a Comment