Click here to Skip to main content
16,019,199 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In my Page i used stay or leave page conformation.all other browsers support this but not IE9.when i click datepicker image icon the pop up displayed. my code is,
JavaScript
$(window).bind("beforeunload", function () {
    if (DATA_CHANGED) {
        DATA_CHANGED = false;
        return "All unsaved data will be lost. Please save your data before you navigate to other page";        
    }
});
$(document).change("input[type='text'],input[type='radio'],input[type='checkbox'],select,textarea", function () {
    DATA_CHANGED = true;
});
$(document).on("focusin", "#AgreementDateFrom,#AgreementDateTo", function () {
    DATA_CHANGED = true;
});
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900