Edit This Code:
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("#div1").on("click" ,"p", function(){
        $(this).css("background-color", "pink");
    });
    $("#div2").delegate("p", "click", function(){
        $(this).css("background-color", "pink");
    });
});
</script>
</head>
<body>

<h4 style="color:green;">This example demonstrates how to achieve the same effect using on() and delegate().</h4>

<div id="div1">
  <p>Click to set background color using the <b>on() method</b>.</p>
</div>

<div id="div2">
  <p>Click to set background color using the <b>delegate() method</b>.</p>
</div>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy