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

Javascript Confirm popup, I want to show Yes, No button instead of OK and Cancel.

I have used this vbscript code:

<script language="javascript">
    function window.confirm(str) {
        execScript('n = msgbox("' + str + '","4132")', "vbscript");
        return (n == 6);
    }
</script>

this only works in IE, In FF and Chrome, it doesn't work.

Is there any workround to achieve this in Javascript?

I also want to change the title of popup like in IE 'Windows Internet Explorer' is shown, I want to show here my own application name.

share|improve this question
agree with all the component suggestions below - even if you could do this it would be horribly ugly – annakata May 5 '09 at 8:04
9  
yes-no tag? That made me laugh! – Gab Royer Jun 29 '09 at 4:12
Great, it worked. But, how to change the title in title bar of the confirm box? By default it shows "VBScript" – Vinod T. Patil Jul 15 '10 at 10:29
5  
Goodness.. "I have used this vbscript code...<script language="javascript">" lol – boycy Jun 20 '12 at 8:40

5 Answers

up vote 50 down vote accepted

Unfortunately, there is no cross-browser support for opening a confirmation dialog that is not the default OK/Cancel pair. The solution you provided uses VBScript, which is only available in IE.

I would suggest using a Javascript library that can build a DOM-based dialog instead. Try Jquery UI: http://jqueryui.com/

share|improve this answer

use jQuery Alert

$.alerts.okButton = ' Yes ';
$.alerts.cancelButton = ' No ';

see file jquery.alerts.js to change other properties. Thanks...

share|improve this answer
13  
from this plugin's home page: Update: this plugin has been archived and is no longer actively maintained. We recommend jQuery UI’s dialog widget for similar functionality. jqueryui.com/demos/dialog – Alex Mar 7 '12 at 15:00

The only way you can accomplish this in a cross-browser way is to use a framework like jQuery UI and create a custom Dialog:

jquery Dialog

It doesn't work in exactly the same way as the built-in confirm popup but you should be able to make it do what you want.

share|improve this answer
1  
For clarity, it's not the ONLY way - you can write your own in Javascript of course, not that it would be the right thing to do. – Leonard Challis Sep 21 '12 at 21:41

You can also use http://projectshadowlight.org/jquery-easy-confirm-dialog/ . It's very simple and easy to use. Just include jquery common library and one more file only:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/themes/blitzer/jquery-ui.css" type="text/css" />
<script src="jquery.easy-confirm-dialog.js"></script>
share|improve this answer

You can't do this cross-browser with the confirm() function or similar. I highly suggest you use something like the jQuery UI dialog feature to create an HTML dialog box instead.

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.