Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a link like

<a href="www.site.com"  class="cancel">go there </a>

And then I have some jQuery:

$(".cancel").click(function(){
    	confirm("sure??");
 });

But when I click cancel in the alert box it still goes to www.site.com in stead of doing nothing. How to solve this?

share|improve this question

4 Answers

up vote 5 down vote accepted

Add the return statement:

$(".cancel").click(function(){
    return confirm("sure??");
});
share|improve this answer
beat me by a second. +1 – Jose Basilio Apr 24 '09 at 8:55
Usually this happens to me :-) – Ilya Birman Apr 24 '09 at 8:59

returning bool is the old way to do it but is not the preferred method in every browser and I have had many problems with it these days. jQuery wraps the event object and handles the event canceling for you.

http://docs.jquery.com/Events/jQuery.Event#event.preventDefault.28.29

$(".cancel").click(function(event){
    if (!confirm("Sure??"))
       event.preventDefault();
});
share|improve this answer

Return the bool from confirm() ?

(Not much of a jQuery wizz, though :) )

share|improve this answer
You have the right idea +1 – Jose Basilio Apr 24 '09 at 8:56

Chad had it right.

event.preventDefault(); is the correct fix. I tried returning false for a click event on an anchor tag and it wouldn't work because I was calling window.location first. By setting event.Default() as the first line in my handler I could then create the window and it opened correctly without allowing the href to execute.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.