find parent element jquery code example
Example 1: select parent of element jquery
$(this).parent();
Example 2: get parent element using jquery
<div id="parentDiv">
<p>Child paragraph element</p>
</div>
$(document).ready(function(){
alert($("p").parent().attr("id"));
});
Example 3: parent jquery example
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>parent demo</title>
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
<div><p>Hello</p></div>
<div class="selected"><p>Hello</p></div>
<div class="selected"><p>Hello Again</p></div>
<script>
$( "p" ).parent( ".selected" ).css( "background", "yellow" );
</script>
</body>
</html>