1var onReloadCheck = function () {
2 $(window).on('beforeunload', function () {
3 var modal = $('#myModal').hasClass('show');
4 if (modal) {
5 return "If you leave before saving, your changes will be lost.";
6 }
7 });
8 }