Tagged Questions
3
votes
4answers
1k views
Jquery find next/prev elements of a certain class but not necessarily siblings
The next, prev, nextAll and prevAll methods are very useful, but not if the elements you are trying to find are not in the same parent element. What I want to do is something like this:
...
2
votes
4answers
222 views
Javascript (jQuery): next() gives me “li.next()” instead of “li”
Confusing title, huh? I tried to explain it as best as i could.
What i mean is, if i have a menu like this:
<ul>
<li> Home </li>
<li class="current"> Portfolio ...
1
vote
2answers
398 views
Jquery: Get next element from an element
How can I get the target from the with td rowspan=4
Not sure about:
$("#fromTd").parent("tr").next().eq($("#fromTd").attr("rowspan")-1)
<table>
<tr>...</tr>
...
0
votes
3answers
96 views
jQuery selector / how find an element (such as div) after a specific element ? (not sibling - next not help)
How my dear friends :
How can I find an element (such as div) after (immediately) another specific element? (not sibling - next() can not help in this sutuation)!
thanks for answer