e.preventDefault()has the same function as a simple one return false, so you can do this to achieve the same effect:
$(".delete").click(function(e){
return confirm('Are you sure you want to delete this?');
});
I don’t know what you are trying to do, but this should answer your question.
, , . , , .