tags:

views:

57

answers:

3

Is it possible to get confirmation dialog with yes , no option instead of ok,cancel in javascript ?

+4  A: 

Not using the native browser functions, no.

You would have to use a custom dialog class like jQuery dialog.

Pekka
+2  A: 

The default confirmation box is baked into browsers. But you can make use of modal dialogs with the little help of plugins like jQuery UI Dialog or BlockUI.

XIII
+1  A: 

Not with the native confirm function. You would have to use a custom dialog. Fortunately, there are a lot of good ones available, check out jQuery and it's plug-ins.

Mike Sherov