<!DOCTYPE html PUBLIC "- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Event Bubbling In jQuery</title>
<script type="text/javascript" src="jquery-1.3.2.js"></script>
<script type="text/javascript">
$(function(){
$( "ul" ).click(
function( objEvent ){
return( false );
}
);
});
</script>
</head>
<body>
<h1>
Event Bubbling In jQuery
</h1>
<ul>
<li>
Go to <a href="http://www.t-nation.com">T-Nation</a>
</li>
<li>
Go to <a href="http://www.cfbloggers.com">CF Bloggers</a>
</li>
<li>
Go to <a href="http://www.nycfug.com">NY CFUG</a>
</li>
</ul>
</body>
</html>