vote up 3 vote down star

I am displaying a javascript confirm-box message when user clicks on "Delete Data" button. I am displaying it as shown in this image:

alt text

In the image "OK" button is selected by default, I want to select "Cancel" button by default, so that accidently if user presses enter then records will be safe and will not be deleted.

Is tehre any way in javascript to sleect "Cancel" button by default??

flag

77% accept rate
4  
How about instead: "Press OK to Cancel, or Cancel to Accept"? – Crescent Fresh Nov 9 at 7:37
2  
IMHO, you shouldn't use OK/Cancel or Yes/No buttons in dialogs. Better create your own dialog in HTML and have buttons that says "Remove Data" and "Abort Removal". That way users won't have to read the long text, only the buttons. That is, always include a verb in a button's label. – Markus Johnsson Nov 9 at 7:40
@Crescent: Its your choice, you are free to use this type of stuff in your apps. I am not interested, Thanks. – Prashant Nov 9 at 16:47
@Markus, yes its always better to use custom message boxes, but I just want to know if there is any way to set default button in normal javascript confirm box. – Prashant Nov 9 at 16:48

3 Answers

vote up 2 vote down check

If you can use jQuery plugin then here is a nice one

jQuery Impromptu

To change the default focused button:

$.prompt('Example 4',{ buttons: { Ok: true, Cancel: false }, focus: 1 });
link|flag
Any reason for the down vote? – adamantium Nov 10 at 4:08
vote up 0 vote down

I don't think you can do that.

But you can definitely make it harder for the user to accidentally 'agree' with the confirmation, for example by forcing the user to type 'y' in an input box:

agree = (prompt("Type 'y' to accept", '') == 'y');
link|flag
-1 Javascript prompt is the devil. – Josh Stodola Nov 9 at 14:31
vote up 1 vote down

You can't do that, but you could use/write your own dialog which is displayed using DOM elements (like phoenix suggested, it just doesn't have to be that particular jQuery plugin, you could write your own or use plugin from another JS framework).

The "use jQuery + plugin X" answers are starting to get annoying. There are a lot of JS libraries out there and even more plugins. For example using any JS library here is unnecessary if you just want to display a custom dialog. While it's a quick solution/answer, answers like that do more harm in a long run then good. People new to JavaScript or programing in general start to think that jQuery and/or plugins are the only way to go and they include 50kb+ library just to write 3 lines of their own (which sometimes don't even use the library :D).

In my opinion Markus Johnsson comment is the best answer, it's a shame it's not posted as one.

link|flag

Your Answer

Get an OpenID
or

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