Stop event bubble up
Description
The following code shows how to stop event bubble up.
Example
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!--from w w w .j a va 2 s .c om-->
$("h1").live("click", function(event) {
event.preventDefault();
});
});
</script>
</head>
<body>
<div>
<h1>header 1</h1>
</div>
</body>
</html>