Top "Parent" questions

In an oriented tree, the parent is the previous node before the node of interest.

how to copy between folders and parent folder without complete path

This is a basic question but I am struggling to find a decent solution. This is hindering my script from …

linux copy parent local cp
Fixing position relative to parent div

Is it possible to fix an element's position relative to the parent div, not the browser window? Say I have: &…

css position containers parent fixed
calling child class method from parent class file in python

parent.py: class A(object): def methodA(self): print("in methodA") child.py: from parent import A class B(A): …

python class inheritance parent
jQuery - How to determine if a parent element exists?

I'm trying to dynamically and a link to an image, however I cannot correctly determine is the parent link already …

jquery parent
How to find nth parent of an element using jquery

I want to find the nth parent element of an given element and access the attributes of parent. <div …

jquery dom navigation parent
If element does not have parent with specific class

I am trying to create an if statement in jQuery for elements that have a parent with a specific class. …

javascript jquery parent
WordPress: get post_parent title

I've created a custom sidebar that grabs the post parent's pages: query_posts("post_type=page&post_parent=6"); I'd …

wordpress parent title
Close current UserControl

I have a Window1.xaml main Window; and after some event, I display a UserControl EditFile.xaml. The code behind …

wpf user-controls parent children
How to get the parent element value using jquery?

I have a table with a couple of rows with two cells in each row and each cell has couple …

jquery element parent siblings parents
Checking the status of a child process in C++

I have a program that uses fork() to create a child process. I have seen various examples that use wait() …

c++ fork parent wait