JSFiddle - React, Tailwind, and code Playground
HTML
<a href="#" onclick="ConfirmDelete();">Go</a>
JavaScript
function ConfirmDelete(e) {
if (confirm("Are you sure you want to delete?")) {
location.href = "adminDelete.php";
}
}
<a href="#" onclick="ConfirmDelete();">Go</a>
function ConfirmDelete(e) {
if (confirm("Are you sure you want to delete?")) {
location.href = "adminDelete.php";
}
}