<script language="JavaScript">
  window.onbeforeunload = confirmExit;
  function confirmExit()
  {
   alert("");window.location="index.html";
  }
</script>

Here i tried but not working please guide me

link|improve this question
1  
what are you trying to do? keep users from leaving your site? But only the second time they try and leave? – Peter Ehrlich Dec 24 '11 at 5:45
@sss if my code solves your probem vote for answer and mark as accepted answer so that other peoples can use this code. – Robin Michael Poothurai Dec 24 '11 at 9:31
feedback

1 Answer

below code will work for you

function confirmExit()
{
 alert("exiting");
 window.location.href='index.html';
 return true;
}
window.onbeforeunload = confirmExit;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.