.parent() code example

Example 1: select parent of element jquery

$(this).parent(); // jquery

Example 2: get parent element using jquery

/*
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
*/

Example 3: what is script.Parent?

-- script.Parent is a command that allows the person to make the code refer the Part's "Parent"
script.Parent.Transparency = 1

Example 4: jquery dom traversal parent

$( "li.item-a" ).parent().css( "background-color", "red" );

Tags:

Lua Example