Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does "return false;" do?

Tags:

I wrote a webpage where a user can enter a log entry that is stored on a database and then retrieved and printed on the page using ajax. I am still quite new to ajax and was wondering if somebody could please explain to me what does return false; do at the end of my code? and is it even necessary?

If I put the second ajax code after the return false the code does not work! can you please explain to me why?

//handles submitting the form without reloading page  $('#FormSubmit').submit(function(e) {     //stores the input of today's data     var log_entry = $("#LogEntry").val();     // prevent the form from submitting normally     e.preventDefault();      $.ajax({         type: 'POST',         url: 'behind_curtains.php',         data: {             logentry: log_entry         },         success: function() {             alert(log_entry);             //clears textbox after submission             $('#LogEntry').val("");             //presents successs text and then fades it out             $("#entered-log-success").html("Your Entry has been entered.");             $("#entered-log-success").show().fadeOut(3000);         }     });     //prints new log entries on page upon submittion     $.ajax({         type: 'POST',         url: '/wp-content/themes/childOfFanwood/traininglog_behind_curtains.php',         data: {             log_entries_loop: "true"         },         success: function(data) {             alert(data);             $("#log-entry-container").html("");             $("#log-entry-container").html(data);         }     });     return false; }); ​ 
like image 938
Dmitri Avatar asked May 23 '12 23:05

Dmitri


People also ask

What does return false do in Python?

It returns True if the parameter or value passed is True. It returns False if the parameter or value passed is False.

What is the purpose of return false in JavaScript?

You use return false to prevent something from happening. So if you have a script running on submit then return false will prevent the submit from working.

What does return false do in C#?

The false operator returns the bool value true to indicate that its operand is definitely false. The true and false operators are not guaranteed to complement each other. That is, both the true and false operator might return the bool value false for the same operand.

What is return false in form submit?

return false cancels the default submit action(stops the submission of form).


2 Answers

What I'll write here is true for jQuery events,
For vanilla javascript events read @T.J. Crowder comment at the bottom of the answer


return false inside a callback prevents the default behaviour. For example, in a submit event, it doesn't submit the form.

return false also stops bubbling, so the parents of the element won't know the event occurred.

return false is equivalent to event.preventDefault() + event.stopPropagation()

And of course, all code that exists after the return xxx line won't be executed. (as with all programming languages I know)

Maybe you find this helpful:
Stop event bubbling - increases performance?


A "real" demo to explain the difference between return false and event.preventDefault():

Markup:

<div id="theDiv">     <form id="theForm" >         <input type="submit" value="submit"/>      </form> </div>​ 

JavaScript:

$('#theDiv').submit(function() {     alert('DIV!'); }); $('#theForm').submit(function(e) {     alert('FORM!');     e.preventDefault(); });​ 

Now... when the user submit the form, the first handler is the form submit, which preventDefault() -> the form won't be submitted, but the event bubbles to the div, triggering it's submit handler.

Live DEMO

Now, if the form submit's handler would cancel the bubbling with return false:

$('#theDiv').submit(function() {     alert('DIV!'); }); $('#theForm').submit(function(event) {     alert('FORM!');     return false;        // Or:     event.preventDefault();      event.stopPropagation(); });​ 

The div wouldn't even know there was a form submission.

Live DEMO


What does return false do in vanilla javascript events

return false from a DOM2 handler (addEventListener) does nothing at all (neither prevents the default nor stops bubbling; from a Microsoft DOM2-ish handler (attachEvent), it prevents the default but not bubbling; from a DOM0 handler (onclick="return ..."), it prevents the default (provided you include the return in the attribute) but not bubbling; from a jQuery event handler, it does both, because that's a jQuery thing. Details and live tests here – T.J. Crowder

like image 141
gdoron is supporting Monica Avatar answered Sep 23 '22 06:09

gdoron is supporting Monica


Any code after return statement in a function will never be executed. It stops executing of function and make this function return value passed (false in this case). Your function is "submit" event callback. If this callback returns false, form will not be submitted actually. Otherwise, it will be submitted as it would do without JavaScript.

like image 20
Pavel Strakhov Avatar answered Sep 21 '22 06:09

Pavel Strakhov