0
return false from within a jQuery event handler is effectively the same as calling both e.preventDefault
and e.stopPropagation.
e.preventDefault()
will prevent the default event from occuring, e.stopPropagation()
will prevent the event from bubbling up and return false
will do both
Read here for more : https://stackoverflow.com/questions/1357118/event-preventdefault-vs-return-false