Welcome to the navigation

Ipsum esse reprehenderit aute voluptate amet, ad irure fugiat excepteur consequat, magna dolore sed cupidatat mollit ut nostrud eu minim lorem ut eiusmod anim duis. In irure sint lorem ut ullamco nostrud in exercitation commodo dolor magna aliqua, ipsum anim qui occaecat aliquip eu adipisicing esse elit, veniam, velit in

Yeah, this will be replaced... But please enjoy the search!

Overriding the default window.prompt using Apprise

I've been using Apprise for quite a long time now, the V2 actually made it harder working with callbacks and similar, hence this post.

Replacing methods in Javascript

Replacing methods in Javascript can be simple, in this example I've replaced the prompt() method

// Replace the prompt with an alert
window.prompt = function() {
    alert("The prompt method is overridden");
}

Replacing the window.prompt with an apprise call

// Define new prompt method
window.prompt = function(text, callback) {
    // Setup Apprise
    var options = {
        buttons: {
            confirm: {
                text: 'Send',
                action: function(e) {
                    callback(e.input);
                    Apprise('close');
                }
            },
        },
        input: true
    };

    // Call Apprise
    Apprise(text, options);
};

// Call the prompt method
prompt("Say something", function(returnValue) {
    // Handle the returnValue here
    console.log(returnValue);
});

The dialog

 

The call and result in a console