0
Reply

beforeunload function is not working in firefox

Mayur  Gujrathi

Mayur Gujrathi

Jun 5 2014 6:48 AM
1.6k

The following function is working in Chrome and Internet Explorer but not in Mozilla Firefox, why is that ?

$(window).bind('beforeunload', function () 
{
if (document.getElementById('flg').value != 'ServiceSucceeded')
{
document
.getElementById('flg').value = '1';
noBack
();
} });