Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to replace the Javascript confirm() function to allow custom buttons instead of Yes/Cancel. I tried searching but all the solutions are event driven such as jquery dialog(where the code does not wait for a response but it is event driven). Does anyone know of a non-event driven solution. It must work in Safari as well as IE (so no vbscript).

Here is sample code in many parts of my system. This is old code and was not designed with event driven windows in mind. I am trying to avoid a rewrite.

**


// Wait for users response
if (result>2000) {
    if (confirm("Are you sure this is right?")){

       ... do stuff

    } 
 }
 ... continue with other stuff
 ... lots of other code.

 if (confirm("Did you double check your numbers?")){

       ... do more stuff

 } else {
      ... do something
 }

**

share|improve this question

4 Answers

up vote 2 down vote accepted

Like the others have said, this isn't possible. confirm is a blocking function - no more script is executed until the user has dismissed the dialog - and you can't simulate that with other methods of Javascript.

A better solution would be to structure your code for asynchronous execution. This is almost always a better idea -- firstly, it lets you decide how your dialogs should look, what buttons there are, etc; and secondly, it doesn't block the user. They might have the important information they need to double-check open in another tab, or elsewhere on the page. With confirm they'd have to answer your question before being able to get to either of these places.

Here's a snippet of what the code might look like. There's a lot of blank bits here, but it might put you on the right track:

if (result>2000) {
    displayConfirm("Are you sure this is right?", {
        "Yes": function () {
            // ... do stuff
        },
        "No": function () {
            // do.. nothing? up to you.
        }
    } 
}

You'll see here that there are two functions defined, but none actually get executed. The displayConfirm function would have to construct a dialog box (in whichever way) and then create buttons, using those functions as the click handlers (or at least, calling them from the click handler).

share|improve this answer
Unfortunately even your code wouldn;t work. There is no blocking/waiting. I guess I am amazed that this simple type of function is not more extensive in the Browsers. Yet they have confirm() and alert() but no way to customize them a bit. I guess like everyone else I am stuck with canned confirm() or start rewriting ...ughhh – user603749 Nov 14 '11 at 21:43

What you're trying to do is impossible. You'll have to use an event driven custom dialog solution, or stick with the browsers default confirmation dialog.

share|improve this answer

You will not be able to do this w/o changing your calls. No custom code can stop execution like the confirm box can. Any solution will require editing code to an event model.

share|improve this answer

Here's a pretty good explanation of opening modal dialogs using javascript:

http://javascript.about.com/library/blmodal.htm

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.