jquery get parent with class code example
Example 1: jquery closest
$( "li.item-a" )
.closest( "ul" )
.css( "background-color", "red" );
Example 2: select parent of element jquery
$(this).parent(); // jquery
Example 3: get parent element using jquery
/*
For accessing parent element details by using reference of children element.
Just Take a look on below example:
*/
Child paragraph element
$(document).ready(function(){
alert($("p").parent().attr("id")); // output: parentDiv
});
/*
I hope it will help you.
Namaste
*/
Example 4: jquery has parent with class
if ($elem.parents('.left').length) {
}