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