1

Possible Duplicate:
window.onbeforeunload not working in chrome

window.onbeforeunload=function(); is not working in chrome.. It works for IE and Mozila but it not works for chrome.. Is there any another way to use window.onbeforeunload=function(); in chrome......... Thanks in advance.......

Community
  • 1
  • 1
siddhesh
  • 137
  • 2
  • 3
  • 6

1 Answers1

-1

I have tested the following in Chrome and it works...

    window.onbeforeunload = function () {
        alert("Hello");
    };
Fenton
  • 241,084
  • 71
  • 387
  • 401