To cancel a default action and prevent it from bubbling up, return false: : bind « jQuery « JavaScript Tutorial






$("form").bind("submit", function() { return false; })








30.20.bind
30.20.1.Bind click event to header
30.20.2.Bind more than one event actions
30.20.3.bind(type, data, fn)
30.20.4.bind "dblclick"
30.20.5.bind "mouseenter mouseleave"
30.20.6.To cancel a default action and prevent it from bubbling up, return false: