<div id="ancestor">
  祖先要素
  <div id="parent">
    親要素
    <div id="child">
      子要素
    </div>
  </div>
</div>
div{
  padding:30px;
  border:2px solid #000;
}
$("div").on("click",function(event){
  $(this).css("background", "#f00");
  event.stopPropagation();
});

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js