Link confirmation

i want to make a link on click confirmation message appears to the user, if he clicked OK it will take it to the href if not it will stay as it is, here is my code but its now working

<a href="del.php" onclick="javascript: confirm('Are you sure you want to delete');return">Delete</a>

I think this should work:


<a href="del.php" onclick="return confirm('Are you sure you want to delete');">Delete</a>