rbrecruiter/public/js/unsaved.js

4 lines
183 B
JavaScript
Raw Normal View History

2021-01-27 02:01:59 +00:00
// Load this on all pages requiring exit confirmation.
$(window).bind('beforeunload', function(){
return "Are you sure you want to exit this page? You might have unsaved work.";
});