css are u sure button code example
Example 1: How to show confirm message before delete using jquery
<button onclick="return confirm('Are you sure you want to Delete?');"
id="btnDelete">DELETE</button>
Example 2: 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>