jquery/test/data/event/triggerunload.html
2016-04-11 13:32:51 -04:00

20 lines
454 B
HTML

<!doctype html>
<html>
<script src="../../jquery.js"></script>
<script src="../iframeTest.js"></script>
<script>
var called = false,
error = false;
window.onerror = function() { error = true; };
jQuery( window ).on( "beforeunload", function( event ) {
called = true;
return "maybe";
}).on( "load", function( event ) {
$( window ).triggerHandler( "beforeunload" );
startIframeTest( called && !error );
});
</script>
</html>