Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

confirmation modal dialog in javascript

Tags:

javascript

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

like image 574
chetan Avatar asked Nov 30 '25 06:11

chetan


2 Answers

Not using the native browser functions, no.

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

like image 188
Pekka Avatar answered Dec 02 '25 19:12

Pekka


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.

like image 37
Kris van der Mast Avatar answered Dec 02 '25 19:12

Kris van der Mast