I want "Yes" and "No" buttons on a confirmation box without using jQuery UI Dialog.
Is there a way to do this?
|
I want "Yes" and "No" buttons on a confirmation box without using jQuery UI Dialog. Is there a way to do this? |
||||
|
|
|
No, you can't change Javascript's standart confirmation box buttons. I suggest you to use Jquery UI dialog. |
|||
|
|
|
The jQuery UI Dialog is a very flexible and powerful tool for that. Here's an example of how to ask the user if he wants to delete something:
//EDIT: Sorry, it was not quite clear from your original question that you do not want to use the jQuery Dialog (but why tag the question with jquery/jquery-ui then?). AFAIK, there is no other way to accomplish what you want to do. Also, keep in mind, that the text of the native JavaScript dialog box also takes care of the browser language and other local factors. So it might not always be a good idea to mess around with that. |
||||
|
|
|
Well, yes and no (no pun intended). You can use this:
The However, as far as I know, there is no way to customize the labels of the buttons. So you're stuck with the defaults ("Cancel" and "OK" on most browsers, if set to English). |
||||
|
|
|
You can do it, but only in IE: Javascript Confirm popup Yes, No button instead of OK and Cancel AFAIK Other browsers doesn't support it
If you don't want jQueryUI, but think of a plugin - try http://www.abeautifulsite.net/blog/2008/12/jquery-alert-dialogs/#demo (also mentioned in linked answer) |
|||
|
|