1
1
Fork 0
mirror of https://github.com/boxgaming/qbjs.git synced 2024-05-12 08:00:12 +00:00
2 Dom.Confirm
boxgaming edited this page 2023-09-25 13:44:28 -05:00

Instructs the browser to display a dialog with an optional message, and to wait until the user either confirms or cancels the dialog.

Syntax

result = Dom.Confirm (message$)

Parameters

  • The message$ parameter specifies the text to display in the dialog.

Returns

A boolean indicating whether OK (-1) or Cancel (0) was selected.

See Also

Window.confirm
Dom.Alert
Dom.Prompt