Created
November 1, 2017 19:03
-
-
Save primaryobjects/aacf6fa49823afb2f6ff065790a5b402 to your computer and use it in GitHub Desktop.
A simple example of a confirm alert dialog in ReactJs / React.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div className='delete-button' onClick={() => { if (window.confirm('Are you sure you wish to delete this item?')) this.onCancel(item) } } /> |
thank you, this way, worked perfectly with my code!
onClick={() => { window.confirm( 'Are you sure you want to delete this Card?', ) && deleteCard(id) }}
from Indonesia, thank you so much. No style css but it works.
Thank you so much. Nice one.
thank you, this way, worked perfectly with my code!
onClick={() => { window.confirm( 'Are you sure you want to delete this Card?', ) && deleteCard(id) }}
GENIAL!!! great work
thank u
Thank you, it works! and it's very simple
thank you, this way, worked perfectly with my code!
onClick={() => { window.confirm( 'Are you sure you want to delete this Card?', ) && deleteCard(id) }}
thanks. tested Next js "v13.1.6"
thankyou it's work for me
Thank you very much, very easy to implement.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank YOU!