Tagged Questions
The sibling tag has no wiki summary.
5
votes
3answers
15k views
Hide an element's next sibling with Javascript
I have an element grabbed from document.getElementById('the_id'). How can I get its next sibling and hide it? I tried this but it didn't work:
elem.nextSibling.style.display = 'none';
Firebug error ...
3
votes
1answer
60 views
Finding a keyword in a node and getting the node name in DOM
I want to search a DOM for a specific keyword, and when it is found, I want to know which Node in the tree it is from.
static void search(String segment, String keyword) {
if (segment == null)
...
3
votes
3answers
7k views
Jquery: How to get to a particular child of a parent?
To give a simplified example, I've got the following block repeated on the page lots of times (it's dynamically generated):
<div class="box">
<div class="something1"></div>
...
2
votes
3answers
45 views
Get the ID of a sibling after a link is clicked
I use the following code and I would like to be able to get the ID attribute from the <li> (the post ID) that is associated with an <a> when it is clicked, but I cannot figure out how do ...
2
votes
1answer
202 views
CSS: Possible to select a certain child plus the immediate following sibling?
I'm currently doing this using Javascript, however, I was wondering if it's possible to select a certain child of an unordered-list and then it's immediate sibling, using CSS.
Example with 4 ...
2
votes
1answer
259 views
In a tree data structure, is a node a sibling of itself?
I am building a tree like data structure. What is the expected behavior if I have a method
public Set getSiblingNodes(Node node);
Should this method return a set including or excluding itself?
...
2
votes
2answers
737 views
beautifulsoup: find the n-th element's sibling
I have a complex html DOM tree of the following nature:
<table>
...
<tr>
<td>
...
</td>
<td>
<table>
...
2
votes
3answers
799 views
jQuery - hide if previous element has a particular class
I would like to hide all class="csc-content" where previous sibling is a h4 class="faq".
UPDATE
Error: I think this is wrong... the previous sibling is not h4. But I hope you get the point that all ...
2
votes
1answer
2k views
Efficiently Detect When Sibling Elements Overlap
Example:
<div id="big"> </div>
<div class="small"> </div>
<div class="small"> </div>
<div class="small"> </div>
...
1
vote
3answers
50 views
How can I locate a tag via CSS selectors, referencing the content of a sibling tag?
I'm working on a Ruby script that will parse and manipulate some XML files. I'm using Nokogiri for the XML handling.
The problem I have is that there are several constructs like this one:
...
1
vote
2answers
124 views
CSS selector if exist adjacent sibling
I have the following (simplified) HTML structure
<td>
<DIV class="t-numerictextbox">
<DIV class="t-formatted-value">$0.00</DIV>
<INPUT ...
1
vote
4answers
44 views
how to get the value of a specific sibling element using id
I want to get the value of a specific sibling element using id, I build the form at run time and there are many element have the same id but in different divisions. I tried to use
...
1
vote
2answers
413 views
Dojo get next sibling based on current event target
I have this dropdown menu, and all i want to do is upon firing the onmouseenter event, to change the border-left of the targets next sibling to white. So far i can address the currentTarget's ...
1
vote
1answer
127 views
Xpath and conditionally selecting descendants based on element value of ancestors
I am hoping someone can help me with this.
I am fairly new to XML parsing so XML parsing and I have only dealt with fairly simple parsing so far.
I am currently stuck with the following problem...
...
1
vote
0answers
405 views
Count number of child nodes of a sibling in XSLT [closed]
I need to be able to count how many child nodes the sibling element has. I need to change the CSS class to be "no_border" on an anchor tag based upon whether the next anchor tag has any child nodes.
...
1
vote
2answers
167 views
Cross-domain JavaScript code with sibling sub-domains
I have two web applications setups:
david.example.com and john.example.com
David opens a new window to John:
window.open('john.example.com');
John would now like to set an input element back on ...
1
vote
1answer
57 views
Looking to simplify adding an attribute based on sibling's text
I would like to add a Title attribute to a row and the value is retrieved from the row's sibling which is hidden, unless clicked. I wanted to make it generic enough to handle when some screens don't ...
1
vote
1answer
437 views
jQuery next sibling li not working on last item
This is currently working, for the most part:
$(".nextproject").click(function() {
$(window).scrollTo(
$(this)
.parents()
.nextAll()
.find("li:visible:first"),
...
1
vote
1answer
181 views
nextSibling issue, again… sorry
Ok, I am using insertRow to insert a TR element into a table, but for some reason it doesn't count that inserted TR element as a sibling of the others when I do nextSibling on it.
For example, ...
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
1answer
407 views
Xpath select following (number) sibling inside anchor help
Sorry in advance if I don't explain this clearly. I will try my best to clarify what I am trying to do. Without further ado...Suppose you have a series of numbers on a page (separated by only a space) ...
1
vote
2answers
931 views
CSS adjacent sibling selectors - IE8 problem
I am creating a menu system using a UL/LI structure. I'm trying to use sibling selectors for hover/show-sub-menus.
I'm using this;
#MainMenu li.Sel ul li.HasSub a:hover+ul {
display: block;
}
...
1
vote
4answers
5k views
Jquery and Safari
I'm having an issue with JQuery and Safari (Windows Version). The code works on FF/IE7/Chrome but not Safari.
I have a simple <li> that has a <div> embedded in to - clicking the ...
0
votes
1answer
21 views
jquery hide show or torggle div loop naming need solution
I have a simple hide show jquery script I grabbed from an example site. I am trying to traverse through using $(this). to target the divs I want to hide/show. I have been able to make this work for ...
0
votes
1answer
33 views
Insert sibling node in JS
So I have a div with some pre tags in it, like so:
<div id="editor" >
<pre contentEditable="true">1</pre>
<pre contentEditable="true">2</pre>
<pre ...
0
votes
4answers
44 views
jQuery how do i select img src inside href
i have simple html that looks like this :
<div class="img">
<a target="_blank" href="kl_big.htm" id="turn-of-cloth-01_lg">
<img src="images/galery/turn-of-cloth-01_lg.jpg" ...
0
votes
1answer
111 views
Overlaying a UIScrollview without cutting off touch events to the scrollview
I have a transparent overlay that I'd like to put over a UIScrollview. I'm adding it as an Imageview sibling view to the scrollview so that it remains stationary while the scrollview subviews move ...
0
votes
2answers
243 views
help with preceding-sibling
i have a xml data like that:
<items>
<data>2</data>
<listElement>
<amounts>
<period_id>1</period_id>
...
0
votes
2answers
238 views
jQuery click class change IE weirdness
I may be trying to get too fancy on this one.
I have a pair of radio-like buttons in a row with a divider between them with background images. When one of the 'buttons' is clicked, I change its ...
0
votes
2answers
239 views
Get the href of the previous sibling and update the href of the current item
I've ended up and done this by hand, but I was thinking this could be done much quicker with some jquery.
I have a table with dozens of the example rows below. What I'd like to do is find the ...
0
votes
2answers
226 views
jQuery: Parent or Sibling? And how to 'instruct' a sibling search?
I have a list that looks like this:
<li class = "current_parent level-0">
<a> Parent Link </a>
<ul class= "children">
<li class = "level-1">
...
0
votes
2answers
158 views
Removing active class and adding it to a sibling
Currently, I have a jQuery Cycle plugin that allows the image to scroll.
With it's callback I am calling this function
function onAfterVideoScroll() {
...
-1
votes
1answer
56 views
Access ViewModel of sibling control
I am aware there are some similar threads but I am still not sure of the best implementation.
The code should be self explanatory - check the comment there. How best to access that VIewModel.
...