Answers for "onclick confirm"

1

onclick javascript confirm

<a href="url_to_delete" onclick="return confirm('Are you sure you want to delete this item?');">Delete</a>
Posted by: Guest on October-30-2021
1

are you sure you want to proceed click ok button javascript code

var result = confirm("Want to delete?");
if (result) {
    //Logic to delete the item
}
Posted by: Guest on October-16-2020
0

javascript onclick alert are you sure

<a href="#" onclick="return confirm('Continue?')">DISABLE</a>
Posted by: Guest on June-17-2020
0

quick confirmation window for webapp link php

<a href="url_to_delete" onclick="return confirm('Are you sure you want to delete this item?');">Delete</a>
Posted by: Guest on January-17-2020

Browse Popular Code Answers by Language