Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
3answers
2k views

Jquery: get ancestors (or descendants) and self

One can use matchedset.find(selector) / matchedset.parents(selector) to get the descendants/ancestors of the current matched set filtered by a selector, but that doesn't include the matched set itself ...
5
votes
4answers
171 views

CSS Selectors, > versus space

What's the point using this syntax div.card > div.name What's the difference between this div.card div.name Thank you!
3
votes
4answers
137 views

Finding all “X-generation” descendants using jQuery

Solved (sort of) Well, I think I solved it (barring edge cases) using the following: function findByDepth(parent, child, depth){ var children = $(); $(child, $(parent)).each(function(){ ...
3
votes
3answers
773 views

XPath query with descendant and descendant text() predicates

I would like to construct an XPath query that will return a "div" or "table" element, so long as it has a descendant containing the text "abc". The one caveat is that it can not have any div or table ...
3
votes
2answers
405 views

Descendent or self selector in jQuery

I want to search for all elements with class needle in all elements returned by jQuery('.haystack') and have tried jQuery('.haystack .needle'), but this doesn't seem to pick up the case where an ...
2
votes
1answer
85 views

jQuery reports no direct descendants of document

I'm using jQuery 1.6.1 at the moment. In Firebug, I've seen that this: console.log($(document).find("*")) does what I expect; it returns all the children of the document. But this: ...
2
votes
1answer
93 views

Issue with XDocument.Decendants(XName) not returning anything

It seems from debugging that my XDocument is being created correctly with the twitter search results. The "var items = from item in doc.Descendants(ns + "entry")" line of code does not seem to be ...
2
votes
5answers
230 views

O(1) algorithm to determine if node is descendant of another node in a multiway tree?

Imagine the following tree: A / \ B C / \ \ D E F I'm looking for a way to query if for example F is a descendant of A (note: F doesn't need to be a direct descendant of F), ...
2
votes
1answer
163 views

How to exclude undesired descendants?

I have a situation where an element contains n clickable handles and n revealable elements: <div class="revealer"> <div class="hotspot"> <a class="handle" ...
2
votes
5answers
118 views

JQuery selector help

Using JQuery, how do I select all elements with class x within an element with id y?
2
votes
5answers
2k views

XSL: How to test if the current node is a descendent of another node

I'm pretty new to XSLT, but need to use it for a CMS using at the moment. I've already come up with a problem, but I'll try to describe my it without going into too much information about the ...
2
votes
5answers
2k views

jQuery select descendants, including the parent

Consider the following HTML <div class="foo" id="obj"> I should be changed red <div class="bar" style="color:black;"> I should not be changed red. <div ...
1
vote
2answers
74 views

XSLT use information from one sibling in another

I have to transform an XML document which has the following structure <NODEA d="8" m="1" xxxxx="WWWWWWWWWWWWWW"/> <NODEA d="16" m="1" xxxxx="somethingelse"/> <NODEB d="1" m="1" ...
1
vote
3answers
55 views

JavaScript/jQuery: hasDescendant / hasAncestor

Hilariously, I'm having incredible difficulty finding any half-good way to determine whether or not an HTML element is inside another one or not -- which seems like it should be a basic core feature ...
1
vote
1answer
45 views

How do I access direct descendants of a jquery object cleanly?

I have the following line in my js var description = jqref.children('.category_info').children('.description').children('p').html(); which works exactly how I want it, though to me it feels way too ...
1
vote
2answers
354 views

django-mptt get_descendants for a list of nodes

I am trying to get all descendants(include_self=True) not for one Node, but for a list (a QuerySet) of Nodes. This should be one SQL query. Example (that actually is not working:) some_nodes = ...
1
vote
3answers
124 views

jQuery - Different selectors for descendants?

Can someone please explain how the selectors work for the different descendants? I've looked a bit online but the descriptions I've found so far don't seem to be terribly different. For example, ...
1
vote
5answers
367 views

How to declare variables

A colleague of mine and I have been discussing how to declare variables in a function. Let's say you have a class called TStrings (using Delphi for the sake of explanation) that has at least one ...
0
votes
1answer
34 views

tree - how to figure out using mysql if the descendants of a node are complete

Asked a similar question before, but no one replied, so I've rethought the issue, and asking a similar/different question. I have a process that starts with a parent/root(top) app. The root app then ...
0
votes
3answers
52 views

Efficient Descendant Record Deletion in MySQL, PHP, and PDO

What's the strategy for removing descendant records from a given record ID where the table points back to itself recursively? Specifically I'm using PDO, PHP, and MySQL 5.0+. Imagine a categories ...
0
votes
1answer
50 views

How can I get/list/see all the descendants of a commit with git (or gitk)?

If you use gitk --all, you can see all the commits of your repo, from all branches. I want something like that except only the descendants of a given commit.
0
votes
1answer
144 views

C# Getting List of Directories Using TreeView Node Information

I have couple of nodes in a Tree-view that user can drag to create child nodes etc. I am using couple of methods to retrieve the parent node list: private static IList<Node> ...
0
votes
2answers
34 views

How do I set a style for the contents of an element or div?

I know you can use ELEMENT * {...} to set a style for each individual item in ELEMENT, but I want to style the contents as a whole. I also know that you can use ELEMENT #DIVID {...} however I don't ...
0
votes
0answers
168 views

List all Models in inheritance tree beginning from ActiveRecord::Base

I am currently very confused by using descendants for ActiveRecord::Base-Objects. I have browsed the internet and tested all solutions but none of them fits my needs. What i want to do: Get an Array ...
0
votes
3answers
61 views

jquery find descendant and click function

How do we call a specific function when clicking on a specific descendant - having specific attribute ? I have html : <form> <input type="text" /> <input type="submit" /> ...
0
votes
2answers
39 views

Mysql delete descendants

I have a table of images, and those images will have various descendants such as thumbnails, different sized versions, and crops (and thumbs of those crops), etc. This means each original image can ...
0
votes
1answer
124 views

How to fetch rows by descending order by appears number?

I'm asking if there are a possibility to order results by a descendant order of number of appearance of rows, an example to clarify: here are my table: foo foo1 foo foo foo1 foo2 here is my result ...
0
votes
1answer
54 views

jqueryUI Css widget, how to prevent descendant

i'd like to prevent CSS from my styles do descendants of descendants without giving them classes or ids? my jQueryUI widget are affected by my ascendant CSS. i've tried For instance: .myClass > ul ...
0
votes
2answers
213 views

Count associated records with tree model (full depth)

We have two models. Ebooks HABTM Tags, where tags follows the tree behavior. For each tag we need two numbers. First, the number of ebooks associated to the tag, and secondly the number of ebooks ...
0
votes
2answers
253 views

AS3: Descendants with multiples conditions

Example of my XML list: <listnode> <nodeA id="1"> <nodeB id="1" /> </nodeA> <nodeA id="2"> <nodeB id="2" /> </nodeA> ...
0
votes
3answers
261 views

Using LINQ to XML to match deeper descendant elements?

Suppose I have the following XML file: <?xml version="1.0" encoding="UTF-8"?> <response> <project> <ixGroup>105</ixGroup> <sGroup>Place ...
0
votes
4answers
235 views

loop over all descendants yui3 / javascript

I am trying to determine if a click occurs inside of a certain node. My idea for doing this is to take the node and loop over all of its descendants, testing if each node is the click events target. ...
0
votes
1answer
115 views

How should grouping be combined properly with child and descendant selectors?

Child and descendant selectors have been leaking to every element on my html structure and I found out that this happens when I combine grouping with it. This affects all elements on the whole ...