xxxxxxxxxx
$('#mybutton').on('click', function(evt) {
$('#mydiv').show();
return false;//Returning false prevents the event from continuing up the chain
});
xxxxxxxxxx
$( "#target" ).click(function() {
alert( "Handler for .click() called." );
});