onclick confirm box with js

a base and simple js onclick confirm box

<button> Tag with Form

<button type="submit" onclick="return confirm('Are you sure?');">Delete</button>

<a> Tag

<a href="#" onclick="return confirm('Are you sure?');">Delete</a>