Thursday, October 11, 2012

JavaScript Confirm Dialog for Mobile

window.onload = function(){
        setTimeout(confirmMobile, 2000);
    }
 
    function confirmMobile(){
        var toView = window.confirm("are you sure?");
        if (toView){
            window.location.replace("prakashbhoi.blogspot.com");
        }
    }

No comments:

Post a Comment