jquery method to find the closest element with a certain class code example
Example: jquery closest
$( "li.item-a" )
.closest( "ul" )
.css( "background-color", "red" );
$( "li.item-a" )
.closest( "ul" )
.css( "background-color", "red" );