Tagged Questions
The siblings tag has no wiki summary.
3
votes
5answers
458 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
2answers
399 views
How to use jQuery prevAll() to select nearby text nodes?
I'm getting a text node (node.nodeType == 3) returned from the getSelection range, eg.:
var selectionRange = selection.getRangeAt(0);
var startContainer = selectionRange.startContainer;
This ...
3
votes
3answers
2k views
JQuery - grab the td value next to radio button
I have the following dilemma:
My HTML is as such (this exists within a PL/SQL app.):
<table id="search_result_table">
<tr>
<input type=radio name="pv_select" ...
3
votes
3answers
7k views
Is there a way to select sibling nodes?
For some performance reasons, I am trying to find a way to select only sibling nodes of the selected node. For example,
<div id="outer">
<div id="inner1"> </div>
...
2
votes
2answers
62 views
What is the XPATH for a simple sibling?
Sample:
<p>
<span class="label">Name:</span> PeterPan<br>
<span class="label">Tag:</span> Critical<br>
<span class="label">Priority:</span> ...
2
votes
1answer
40 views
Extract continous siblings in XSL
I have an HTML file like this:
<root>
<br>
<h3>The first H3 text</h3><br>
<p>para1 content in first H3</p><br>
<p>para2 content ...
2
votes
4answers
62 views
jquery: How can I add an item before the siblings?
How can I add an item before the siblings?
For instance,
<div class="item">1</div>
<div class="item">2</div>
<div class="item">3</div>
So I want to add this ...
2
votes
1answer
152 views
Extracting data from a json sibling?
Some json from picasaweb:
http://picasaweb.google.com/data/feed/api/user/100489095734859091829?kind=album&access=visible&alt=json-in-script&thumbsize=144c
Here's the output as tidied up ...
2
votes
3answers
265 views
Sibling package imports
I've tried reading through questions about sibling imports and even the
package documentation, but I've yet to find an answer.
With the following structure:
├── LICENSE.md
├── README.md
├── api
│ ...
2
votes
3answers
94 views
jquery next and this not working
I am trying to have an input checkbox trigger whether the b version of the question shows up. If they choose never it goes away. I'm using two classes to listen. When .showb is clicked go find the ...
2
votes
5answers
231 views
Checking for a css class on the nearest sibling() div with jQuery?
Is there a way in jQuery to return the nearest sibling() div and check for a present class?
I have a visual verticle list of items, in which some items either have a 1px border (to set them apart - ...
2
votes
2answers
1k views
PHP SimpleXML XPath get next parent node
I've never asked a question here before so please forgive my question if its formatted badly or not specific enough. I am just a dabbler and know very little about PHP and XPath.
I have an XML file ...
2
votes
2answers
333 views
jQuery siblings and $(this) blur and focus
I have a form with labels and input fields. When clicking into a field I want to style the field with CSS and display some information about the input requirements in a div under the label.
The ...
2
votes
1answer
774 views
xPath: select following-sibling and self nodes
From this piece of HTML:
<tbody>
<tr>
<tr id="1" class="first">
<tr id="2" class="">
<tr id="3" class="last">
<tr id="4" class="first">
...
2
votes
4answers
785 views
Find if node has siblings using simplexml
I am try to find if a certain node has siblings, and if it does, I would like to know what those siblings are.
Is this possible?
2
votes
7answers
12k views
jquery next siblings
I've been trying to get this problem solved, but I can't seem to figure it out without some serious workarounds.
if I have the following HTML:
<ul>
<li class="parent"> headertext ...
2
votes
3answers
275 views
Can't select SPAN sibling
Can't understand why this code changes color of DIV element to blue, but doesn't change color of a SPAN element. Any ideas?
<html>
<head>
<script ...
1
vote
3answers
46 views
Jquery get input hidden value not working
I am trying to get the value of a hidden input type, but it's not working.
JQUERY (in script tags):
$('.flagComment').click(function() {
var commentid = ...
1
vote
4answers
36 views
Chaining “siblings” and “not” method
I'm currently trying to chain the .siblings and .not method:
$(nextBanner).siblings(".banner").not(".active").hide();
But it doesn't work – does anyone know how to target a set of siblings and ...
1
vote
2answers
39 views
absolute pos span disappering on second click of custom tooltip
Check this code.
<li>one <a href="#" class="opt">delete</a>
<div class="popup">
<span class="tip"></span><a href="#" ...
1
vote
2answers
146 views
Hide all other sibling div onclick
In my page there are lists like what is given below.
<li class="select">
<div class="type"><span class="icon_word_small bgpos"></span></div>
<div ...
1
vote
5answers
87 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
2answers
43 views
mousedown. propagation on siblings event.targets
I have 2 sibling-nodes with 'position absolute' which both handle mousedown event. How can I trigger the handler of 'div 1' when I am clicking on the transparent area of the 'div 2' (on the pic.)
1
vote
1answer
57 views
How do I select an element that has no visible siblings using jQuery?
I know I could do this with some extra javascript, but I'm guessing there is a way to it using just a jQuery selector.
The element(s) I'm looking for will have siblings that have just (on the ...
1
vote
1answer
80 views
XPath select descendent of parents sibling
This html is within my page:
<tr>
<td class="padded2" bgcolor="#103A74"><font color="White">Refine by Vehicle Types</font></td>
</tr><tr>
...
1
vote
2answers
86 views
How to cycle through siblings using jQuery?
I have the folowing code:
html:
<div class="container">
<div class="selected">A</div>
<div>B</div>
<div>C</div>
<div>D</div>
...
1
vote
5answers
69 views
How to select only one sibling with jQuery?
I have this code:
<ul>
<li class="foo">foo text</li>
<li class="foo2">foo2 text</li>
<!-- more li here -->
<li class="bar">bar text</li>
...
1
vote
2answers
388 views
jQuery siblings / removeClass “active” just wont work
I've been trying to get this arrow toggle script work on my page. I think i miss something simple but I just don't know what is it. Been spending 2 hrs to figure this out.
The script :
...
1
vote
2answers
279 views
CSS table using colspan and rowspan - better way to apply class to siblings?
Here's my fiddle:
http://jsfiddle.net/UjAQf/102/
Is there a better way to apply the "pickBody" to each table row instead of inserting the class directly in HTML like I am doing? For example, "for ...
1
vote
5answers
82 views
parent() grabbing siblings as well
In the example on the following page, I would like the "active" class to apply to the parent of the active link:
http://socalragdolls.com/jquerytest.html
<div id="topnav">
<ul ...
1
vote
3answers
102 views
Tricky XSL Problem — Determining Position in Complex Array
<row>
<cell>Phrase 1</cell> #0
<check shuffle="False">
<option key="1"/> #1
<option ...
1
vote
1answer
162 views
find on page neighbouring siblings jquery?
ok i've been searching for an answer to this (if there even is one) with no luck
i have a succession of div elements as shown in the pic bellow:
...
1
vote
1answer
197 views
Jquery: How to get the siblings with css property set to display none
HI ,
<ul>
<li id=tab1 style="display:none;">tab1</li>
<li id=tab2 style="display:block;">tab2</li>
<li id=tab3 style="display:block;">tab3</li>
<li ...
1
vote
2answers
164 views
jQuery accordion
Our html:
<ul class="accordion">
<li>
<h2 class="a-head">head 1</h2>
<div class="a-body">body 1</div>
</li>
<li>
<h2 class="a-head">head ...
1
vote
2answers
136 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
1answer
1k views
How do I select xml child nodes in jQuery?
Right now this code parses the XML file fine, however, in the XML file I have multiple author nodes, I'd like to be able to put a comma in between each author. The XML varies from one to from one to ...
1
vote
2answers
239 views
help on jQuery working trying to autoFocus on the next input field after keyUp, being as generic as possible
the HTML
<input class="fr pinPass" type="password" name="pin1" id="pin1_1" tabindex="100"/>
<label>Enter the third number</label>
<br class="cb"/>
<input class="fr ...
1
vote
2answers
1k views
jquery: toggling the siblings
I want to toggle the next sibling of a link in a list like this,
<ul>
<li><a href="#">1</a></li>
<li><a href="#">2</a>
<ul ...
1
vote
2answers
98 views
nextSibling issue, should be simple
Ok, I'm trying to come to grips with this nextSibling function in JS. Here's my issue within the following code...
var fromRow = document.getElementById("row_1");
while(fromRow.nodeType == 1 ...
1
vote
2answers
2k views
jquery access sibling TD in table
I have the following HTML Code. What I'm try to do is to have the div named javaRatingDiv to be displayed once the checkbox with the name java is checked.
I can't seem to figure out how to navigate ...
1
vote
6answers
103 views
Replacing fields with jQuery
Why is line 10 returning null?
http://pastie.org/720484
it works with line 40
1
vote
1answer
834 views
how to hide all right siblings with jQuery?
$(this).parent().next().css('display','none');
The above only hides the sibling right next to the current one.
If there are multiple ones,will fail.
1
vote
1answer
253 views
Checkbox changes the parent tr, and the inputs contained within
Not sure of the best way to explain this... I have an input where you can enter two times, but also a checkbox if you wish to omit a certain day, thus rendering the inputs kinda useless, so I'd like ...
1
vote
2answers
2k views
jQuery Controlling Single DIVs With the Same Class (Siblings?)
I am building a FAQ module for my site and I want to be able to control single elements on the page even though they all have the same class. I believe this comes under siblings which I am not yet ...
0
votes
3answers
30 views
jquery select parent elements sibling
Ok, lets see if I can explain this clearly enough here.
My HTML looks like
<li>
<div class="info_left" rel="snack">Fries</div>
<div class="info_right">
...
0
votes
3answers
38 views
Select siblings of siblings in jQuery
In the following code, when the user clicks on the '.more' span element, I want to retrieve information (eg, the ID) from the img within the article tag using jQuery.
Here's the HTML:
...
0
votes
2answers
76 views
Check if siblings in an unordered list of inputs are checked using jquery
I have an unordered list of checkbox inputs:
<ul>
<li><input type="checkbox">parent
<ul>
<li><input type="checkbox">child
<ul>
...
0
votes
1answer
65 views
Jquery to select anchor tag by going through UL tag
I want to select anchor tag in a div, but I want to select from the child ul tag as I am trying to create a dropdown.
My HTML code is as below:
<div>
<a href='#'>Dropper 1</a>
...
0
votes
1answer
71 views
How can I use sibling CSS selectors?
$('#0show').hide();
$('#0click').click(function(event) {
$('#0show').toggle();
$('#1show').hide();
$('#2show').hide();
});
$('#1show').hide();
...
0
votes
1answer
96 views
Get previous sibling until class is “something”
If I have a long list of <li> elements, when one is clicked, how can I get all sibling elements until one with a class name that contains a given string is reached?
Example:
...