admin管理员组文章数量:1415484
I have a requirement wherin the IE browser should be disabled from being closed when the ajax modal popup is shown inside the page for a buisness need.Kindly let us know the feasability for the same or options to resolve the needs.
I have a requirement wherin the IE browser should be disabled from being closed when the ajax modal popup is shown inside the page for a buisness need.Kindly let us know the feasability for the same or options to resolve the needs.
Share Improve this question edited Apr 3, 2013 at 7:36 Guru Kara 6,4823 gold badges40 silver badges51 bronze badges asked Apr 3, 2013 at 7:34 user2239309user2239309 111 silver badge2 bronze badges 2- 2 Would'nt that be great for spammers, if you could just disable closing the browser. Not annoying at all. This is of course not possible for obvious reasons. – adeneo Commented Apr 3, 2013 at 7:37
- ".Kindly let us know the feasability for the same or options to resolve the needs." - you want something, you should show research effort for it. Search "kiosk mode". – CodeCaster Commented Apr 3, 2013 at 7:45
2 Answers
Reset to default 3It's NOT POSSIBLE to disable close button in any of the modern browsers.
If all that you are looking for is to keep users in your page, then i would suggest using the window.onbeforeunload JavaScript event
window.onbeforeunload = function(){ return 'Do you want to leave ?';}
It's supported in all major browsers by asking users a question as to whether they want to leave in the middle of a critical operation.
Here is a reference article to get you startedUsing the OnBeforeUnload JavaScript Event
You can not disable the browser's close button , but yes you can capture the browser's close button with the help of Jquery
本文标签: javascriptdisable Internet explorer close buttonStack Overflow
版权声明:本文标题:javascript - disable Internet explorer close button - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745233629a2648931.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论