Edit in GitHubLog an issue

window.confirm()

Returns: boolean - true If OK button is pressed and false when Cancel button is pressed.
Since: v7.0.0


Displays a Confirm message dialog putting the application in a modal state while not blocking the Javascript thread and still allowing processing of events in the main event loop.

The following are additional simple alerts supported by UXP

  1. alert()
  2. prompt()
ParamTypeDescription
message
string
A string you want to display in the confirmation dialog.

Example

Copied to your clipboard
confirm("This is confirmation message");
Note: 1. Since UXP v7.4, `confirm()` can only be invoked in `plugin` via the featureFlags `enableAlerts`. Update your Manifest v5 with the following
Copied to your clipboard
1"featureFlags": {
2 "enableAlerts": true
3 }
  1. Since UXP v7.4, confirm() is disabled for scripts
Was this helpful?
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.