The difference between ‘return false;’ and ‘e.preventDefault();’ | CSS-Tricks

The difference is that return false; takes things a bit further in that it also prevents that event from propagating (or “bubbling up”) the DOM.

Lexy Almost 14 years ago