Custom Confirm Box with JavaScript code example
Example 1: inline confirm box javascript
onclick="return confirm('Are you sure?')"
<a href="delete.php?id=22" onclick="return confirm('Are you sure?')">Link</a>
Example 2: custom confirm box css
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>