vote up 3 vote down star

Javascript Confirm popup, I want to show Yes, No button istead of OK and Cancel. I have use vbscript code

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

this only work in IE, In FF and Chrome, it does't work. Does there any workround to acheive this in Javascript.

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

flag

76% accept rate
agree with all the component suggestions below - even if you could do this it would be horribly ugly – annakata May 5 at 8:04
1  
yes-no tag? That made me laugh! – Gab Royer Jun 29 at 4:12
:)............. – Muhammad Akhtar Jun 29 at 4:41

4 Answers

vote up 10 vote down check

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|flag
vote up 4 vote down

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|flag
vote up 3 vote down

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|flag
vote up -1 vote down

"Paid for by jQuery UI," I gather...

link|flag
This does not answer the question. – Rob Hruska Aug 26 at 16:53
jQuery does not need to pay for this. Also if paying worked we all would be using some library built by Microsoft (with such deep pockets they can really afford this, but it is not possible) – TheVillageIdiot Sep 18 at 12:30

Your Answer

Get an OpenID
or

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