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.

link|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
7  
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
feedback

5 Answers

up vote 40 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/

link|improve this answer
feedback

use jQuery Alert http://abeautifulsite.net/blog/2008/12/jquery-alert-dialogs/#demo

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

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

link|improve this answer
4  
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 at 15:00
feedback

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:

http://jqueryui.com/demos/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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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