Tagged Questions
The parents tag has no wiki summary.
3
votes
5answers
462 views
Jquery First occurrence tree traversal up parents/siblings
What is the best way to get closest (up tree) given a class, but it can be a sibling of a parent.
I want to get "errors1" element start with element ".start"
<div>
...
<div ...
3
votes
1answer
153 views
Adding “this” to the parents stack for “each” in jQuery
This question is a bit of a two-parter. First, the title question. Here's what I've got:
// Report all of the parents
$(this).parents().each(function(i){
// Collect the parts in a var
var ...
3
votes
5answers
1k views
Getting Parent Layout in Qt
quick question. Is there any way to (easily) retrieve the parent layout of a widget in Qt?
PS: QObject::parent() won't work, for logical reasons.
EDIT:
I'm positive the widget has a parent layout, ...
3
votes
1answer
3k views
How to create an SQL Server 2005 CTE to return parent-child records, for children with multiple parents
I'm experimenting with CTE's in SQL Server but have reached a dead end with getting the following scenario to work. I have a hierarchy table similar to this:
Node(ID:439)
Node(ID:123)
...
2
votes
2answers
24 views
parents and appendto don't work together?
jquery.parents and jquery.appendTo seem don't work together, for instance, I want to add a new element to the clicked button's parent's element only,
$('.local').click(function(){
var object ...
2
votes
1answer
51 views
jQuery: Keep .index( ) to return every parents index
In the code below, I am trying to get back the index of the element clicked and if so, its parent index. The problem is that it tries to return, also, its parent's index...
By example: if I click on ...
2
votes
1answer
81 views
Can you change a widget's parent in python tkinter?
Is there any way to change a widget's (ttk.frame in this case) parent? I can't find any keywords to use in the widgets .config. Is this not possible in python tkinter? What I'd like functionally is to ...
1
vote
5answers
89 views
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 of info like office name, address and phone number etc. Using jquery for each, the address is being pulled out ...
1
vote
4answers
97 views
.parents().removeClass() not working
i got this javascript, trying to remove a class on a parent element:
$(this).parents(".box").removeClass("expanded");
on this html:
<div class="box trx">
<a href="javascript:;" ...
1
vote
4answers
68 views
Remove an element from html()?
How can I remove certain element inside html()?
For instance, I have this html links,
<ul>
<li><a href="#" class="string-comment">Comment</a></li>
...
1
vote
2answers
83 views
JQuery get first matching ancestor containing a specific class
I am trying to iterate to the first ancestor containing the class ‘sys-form-row’.
I am able to get the row containing class="sys-form-row" using the following: objBack = ...
1
vote
2answers
137 views
JQuery - Problem with selectors (siblings, parents…)
I got a coldfusion query where the result is grouped on country names. With a click on this one, I try to open or close the list under the country. But i cannot work correctly with this siblings and ...
1
vote
2answers
442 views
Most elegant way to find node's predecessors with networkX
I'm working on a graphical model project with python using NetworkX. NetworkX provides simple and good functionality using dictionaries:
import networkx as nx
G = nx.DiGraph() # a directed graph
...
1
vote
1answer
354 views
jQuery parents (nested divs) change class
I'm trying to learn jQuery
I want that, when I hover a children, he changes (rose in the image)
the class of parents (XI). I believe that must be something like that
$(this).parent().addClass("XI");
...
1
vote
1answer
161 views
jquery traversing - there has to be a better way than mine!
I'd like to know if someone has a better way to access the elements #type and #type_new based on my html:
<tr>
<th>Type of Organization</th>
<td id="toggle">
...
0
votes
4answers
36 views
Jquery Closest and Parents Not Working with Input and Nested Divs
I have hidden Divs with ".display-link" classes that are two levels up from an input box. When an input (checkbox) is clicked, it should display the hidden link in the parent's previous sibling's ...
0
votes
3answers
32 views
Weird behavior with .parents() and .closest() when trying to return parent <ul> element id in jQuery
So I've got 2 <ul> containers each with id's. Inside of them are a list of <li> elements.
The first <ul> is <ul id="coaches-list">. The second is <ul id="players-list">.
...
0
votes
1answer
46 views
How to start a process in a given container? (how to start acrobate reader in a groupbox?) in VB.Net
I would like to have a preview of pdf and xps files displayed in my application. So I would like to be able to run a process and give it the "location" or the container where it should run from.
Is ...
0
votes
3answers
61 views
Matching a link's fragment with the url's fragment with jquery?
How can I find the match in a link's fragment with the url's fragment and then highlight the link's parent?
HTML,
<div class="item">
<a ...
0
votes
3answers
39 views
How can I use parents('ul') to select the nearest/ closest <ul> only?
I have this html,
<ul>
<li>A
<ul>
<li><a href="#">1</a></li>
<li><a href="#">2</a></li>
</ul>
...
0
votes
2answers
16 views
How to affect an ancestor in jQuery that has a certain descendant?
I've got these two DIVs which have the same class name ():
<div class="myOutterDiv">
<ul class="innerUL">
<li id="num1">1</li>
<li ...
0
votes
2answers
224 views
jQuery - How to use parents() to access both 1 and 2 levels up?
I have HTML that looks like this:
<fieldset class="vertical-tabs-pane">
<div class="vertical-tab-navigation">
<a class="previous-tab" title="Go back to previous step" ...
0
votes
2answers
378 views
Why does jQuery's parents/closest(selector) functions behave differently in IE8?
I have a jQuery script that works perfectly fine in Chrome 11 and Firefox 4, but it appears to be broken in IE8. It appears to be related to the use of the jQuery parents() function with a selector. ...
0
votes
1answer
78 views
Passing variables to child component, and getting NaN returns
I have a component being called within a repeater. Within the call, i'm passing several variables to the component. All of them work fine except for one named totalSpan... which is returning a NaN ...
0
votes
2answers
125 views
jQuery - trigger toggle on a table element from button in a different table via parents()
I'm trying to toggle (hide/show) a table when clicking a button which is located in a different table, but have trouble selecting it correctly.
I intentionnally left id tags out, as I want the jQuery ...
0
votes
1answer
271 views
C language: Children don't exit, nor terminate and are not killed my parent process too
I can't exit or terminate children processes sending a signal.
Could you please tell me what I'm doing wrong in this code:
//###################################### INVERTER.C (main)
#include ...
0
votes
1answer
662 views
Jquery: Select full href with a 'contains' method
Is it possible using jQuery to select one full link which href contains another variable?
My code is:
var element1 = $(".not-viewed").parents('li').attr("id");
var element2 = ...
0
votes
2answers
597 views
“cp --parents” in batch file/VBScript
How would you write this having only batch files and VBScript at your disposal in a Windows environment?
find -name '*.ext' -exec cp --parents {} destination/ \;
Or put it this way:
Look ...