sweetalert icon indicating copy to clipboard operation
sweetalert copied to clipboard

Prevent SweetAlert to be closed on clicking outside the popup window

Open schoolliu opened this issue 4 years ago • 1 comments

Although "allowOutsideClick: false" is set, when the pop-up window is quickly clicked in another location, it will also trigger the pop-up window to close, and the external click will not be prohibited until the second pop-up window is opened.

schoolliu avatar Jun 26 '21 07:06 schoolliu

Use this

swal({ closeOnClickOutside: false, });

imShub avatar Oct 30 '22 17:10 imShub