open a custom popup on browser window/tab close

前端 未结 6 796
忘掉有多难
忘掉有多难 2020-12-02 00:30

I am trying to open a custom popup on browser window/tab close.

In details if a user clicks on the browser window/tab close button a custom popup will appear with s

6条回答
  •  遥遥无期
    2020-12-02 01:12

    window.onbeforeunload = function (e) 
    {
        e = e || window.event;
    
            e.returnValue = 'You want to leave ? ';
    
    
    };
    

    jsFiddle

提交回复
热议问题