6 lines
126 B
JavaScript
Executable File
6 lines
126 B
JavaScript
Executable File
window.onbeforeunload = confirmExit;
|
|
function confirmExit(){
|
|
if (typeof executingPostBack == 'undefined')
|
|
return "";
|
|
}
|