vote up 2 vote down star

When and why to 'return false' in javascript?

flag

72% accept rate
7  
That's kind of a vague question... Could you please be a little more specific? – musicfreak May 12 at 23:16
who upvoted this? it's a terrible question! – nickf May 13 at 1:10
2  
Based on the answers so far, I think it would be nifty if a search on (return false JavaScript) were to return this page. – Thomas L Holaday May 13 at 1:24

7 Answers

vote up 11 vote down check

Often, in event handlers, such as onsubmit, returning false is a way to tell the event to not actually fire. So, say, in the onsubmit case, this would mean that the form is not submitted.

link|flag
3  
This is particularly good if you want an AJAX form that submits without reloading the page - but also works by submitting and reloading the page when javascript is not available. – Dean May 13 at 1:50
vote up 11 vote down

Er ... how about in a boolean function to indicate 'not true'?

link|flag
aehaehu, fairly true, literally. – José Leal May 12 at 23:24
3  
what about FileNotFound? – nickf May 12 at 23:25
Even in FileNotFound false is still not true ain't it? – Gleb May 12 at 23:51
Gleb: There's no "in FileNotFound", it's a TDWTF in-joke: thedailywtf.com/Articles/What_Is_Truth_0x3f_.aspx/… – Chris Jester-Young May 13 at 2:40
vote up 2 vote down

When using jQuery's each function, returning true or false has meaning. See the doc

link|flag
vote up 1 vote down

It is used to stop the propagation of the event. You see when you have two elements both with a click event handler (for example)

-----------------------------------
| element1                        |
|   -------------------------     |
|   |element2               |     |
|   -------------------------     |
|                                 |
-----------------------------------

If you click on the inner element (element2) it will trigger a click event in both elements: 1 and 2. It is called "Event bubbling". If you want to handle the event in element2 only, then the event handler has to return false to stop the event propagation.

Another example will be the link onclick handler. If you want to stop a link form working. You can add an onclick handler and return false. To stop the event from propagating to the default handler.

link|flag
the first part of this answer is wrong: returning false from an event handler will prevent the default action associated with an event; you could also do this via calling event.preventDefault() or setting event.returnValue = false (IE); in order to stop the event from bubbling, you'll have to call event.stopPropagation() or setting event.cancelBubble = true (IE) – Christoph May 12 at 23:55
vote up 0 vote down

http://jqueryfordesigners.com/jquery-tabs/ This will give you a good, easy example. Watch the screencast or check out the demo code.

link|flag
vote up 1 vote down

I think a better question is, why in a case where you're evaluating a boolean set of return values, would you NOT use true/false? I mean, you could probably have true/null, true/-1, other misc. Javascript "falsy" values to substitute, but why would you do that?

link|flag
vote up 4 vote down

I'm guessing that you're referring to the fact that you often have to put a 'return false;' statement in your event handlers, i.e.

<a href="#" onclick="doSomeFunction(); return false;">...

The 'return false;' in this case stops the browser from jumping to the current location, as indicated by the href="#" - instead, only doSomeFunction() is executed. It's useful for when you want to add events to anchor tags, but don't want the browser jumping up and down to each anchor on each click

link|flag

Your Answer

Get an OpenID
or

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