1return false does 3 separate things when you call it:
2
3event.preventDefault()
4//It stops the browsers default behaviour (like a href event on a link).
5
6event.stopPropagation()
7//It prevents the event from propagating (or “bubbling up”) the DOM.
8
9Stops callback execution and returns immediately when called.