[removed] and [removed] is not working in Firefox , Safari , Opera?

后端 未结 6 1841
心在旅途
心在旅途 2020-11-22 12:11

In my chat application I need to get confirmation from user , when my application closes.

So I used the window.onbeforeunload for confirmation alert and

6条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-22 12:52

    I was able to get it to work in IE and FF with jQuery's:

    $(window).bind('beforeunload', function(){
    
    });
    

    instead of: unload, onunload, or onbeforeunload

提交回复
热议问题