0
Q:

jquery dom traversal parent

$(this).parent(); // jquery
1
/*
For accessing parent element details by using reference of children element.
Just Take a look on below example:
*/

<div id="parentDiv">
	<p>Child paragraph element</p>
</div>

$(document).ready(function(){
  alert($("p").parent().attr("id"));  // output: parentDiv
});

/*
I hope it will help you.
Namaste
*/
5
$( "li.item-a" ).parent().css( "background-color", "red" );
-1

New to Communities?

Join the community