Código Javascript
:
Ver original<head>
<title>Prueba</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script>
$(function(){
$('body').click(function() {
alert('click fuera');
});
$('#midiv').click(function(event){
event.stopPropagation();
});
});
</script>
<style>
#midiv{height:200px; width:200px; background:blue}
</style>
</head>
<body>
<div id="midiv"></div>
</body>
</html>
se puede hacer de muchas formas, pero yo uso este plugin
http://benalman.com/projects/jquery-...events-plugin/