find parent class jquery code example
Example 1: jquery closest
$( "li.item-a" )
.closest( "ul" )
.css( "background-color", "red" );
Example 2: select parent of element jquery
$(this).parent();
Example 3: get parent element using jquery
<div id="parentDiv">
<p>Child paragraph element</p>
</div>
$(document).ready(function(){
alert($("p").parent().attr("id"));
});
Example 4: jquery get closest form
$( this ).closest( "form" )
Example 5: jquery has parent with class
if ($elem.parents('.left').length) {
}
Example 6: jquery get the parent node
$(selector).parent(filter)