Jack
Jack

Reputation: 31

Are custom buttons possible in an alert box?

Hi I have been looking to create custom buttons in an alert box I would like them to say Go and Cancel instead of OK and cancel

onClick="if(confirm('Would you like to continue?'))

Upvotes: 3

Views: 13592

Answers (3)

KJYe.Name
KJYe.Name

Reputation: 17169

No, there is no cross-browser support for opening a confirmation dialog that is not the default OK/Cancel pair, but you can build them with JavaScript such as jQuery Alert Dialogs, jQuery impromptu, Mootools LightFace and many more.

Upvotes: 4

Eineki
Eineki

Reputation: 14909

You can't, as far I know. The button caption are not customizable by design.

It is needed to avoid possible fraud (think what can happen if you switch the caption of confirm and cancel buttons).

Upvotes: 3

Related Questions