does php have closest() or parent() function like jquery code example
Example 1: jquery nearest
$( "li.item-a" )
.closest( "ul" )
.css( "background-color", "red" );
Example 2: select parent of element jquery
$(this).parent(); // jquery
$( "li.item-a" )
.closest( "ul" )
.css( "background-color", "red" );
$(this).parent(); // jquery