I have a delete button that is tied to some comments on a page i have. When you click the delete button i am trying to get a confirm dialog box to pop up asking if you are
You should return false to prevent the default event. This should work:
onclick="confirm('Are you sure that you want to delete this comment?'); commentDelete(1);return false;"