Stop nested function call

Events bubble up the top of the tree, you can stop this within an event handler with event.stopPropagation()

$('.two').on('click', function(event){
  myFun();
  event.stopPropagation();
}