Add event handler to p element inside div - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:delegate

Description

Add event handler to p element inside div

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("div").delegate("p", "click", function(){
        $(this).slideToggle();//  www . ja  va 2 s .  c  o m
    });
    $("button").click(function(){
        $("<p>This is a new paragraph.</p>").insertAfter("button");
    });
});
</script>
</head>
<body>

<div style="background-color:yellow">
  <p>This is a paragraph.</p>
  <p>Click any p element to make it disappear. Including this one.</p>
  <button>Insert a new p element after this button</button>
</div>

<div style="background-color:blue">
  <p>This is a paragraph.</p>
  <p>Click any p element to make it disappear. Including this one.</p>
  <button>Insert a new p element after this button</button>
</div>

<div style="background-color:red">
  <p>This is a paragraph.</p>
  <p>Click any p element to make it disappear. Including this one.</p>
  <button>Insert a new p element after this button</button>
</div>



</body>
</html>

Related Tutorials