Confirmation JavaScript onclick
<a href="url_to_delete" onclick="return confirm('Are you sure you want to delete this item?');">Delete</a>
Talented Thrush
<a href="url_to_delete" onclick="return confirm('Are you sure you want to delete this item?');">Delete</a>
var result = confirm("Want to delete?");
if (result) {
//Logic to delete the item
}
<a href="#" onclick="javascript:return confirm('Are you sure you want to delete this comment?')"><i class="ri-delete-bin-7-line"></i></a>
<a href="url_to_delete" onclick="return confirm('Are you sure you want to delete this item?');">Delete</a>