event.preventDefault() vs event.stopPropagation() vs return false
This article provides the information how can we prevent default behavior/action of an element in jQuery. Sometimes we need to stop/prevent element default action when a certain event is fired using jQuery.Event object methods we can achieve that event. We will see all three methods with a DEMO event.preventDefault() event.preventDefault(); method is stop default
Read more