Tagged Questions
4
votes
2answers
150 views
Jquery Select element 2 positions further - another way to .next().next()
I am searching for a way how I could select a div element which is not the direct next one to the one which is "selected" by a click function.
<div ...
3
votes
3answers
2k views
Finding the next input (of a parent?) with jQuery
I've got a checkbox inside a table, and when you click on it, it'll change the background colour accordingly like so...
$("#table tr td :checkbox").bind("click change", function() {
$this = ...
2
votes
2answers
39 views
How do I select the next “select” (dropdown) in this HTML?
My html is:
<tr>
<td><select id = "delAppSelectApp" name="delAppSelectApp"><option value="--Select--"> --Select--</option></select></td>
...
2
votes
4answers
124 views
Jquery next() problem
I have this code:
<div class="window-compl">
<div class="window showincatalog showing">
<h2>Text1</h2>
</div>
<div class="window">
...
2
votes
2answers
130 views
next instance of
trying to get the next matching element in a list;
var newScrollX = $('#projectImages li').next(".instOf"+myNo);
the above works but i don't want it to go back to earlier instances in the list so;
...
2
votes
3answers
2k views
jQuery nextAll — Click on h-element toggles all p-elements until next h
i'm creating an FAQ page where the answer is toggled by clicking on the question. The question is h3 and the answer is several "p" elements. Like this:
<h3>The First Question</h3>
...
1
vote
4answers
89 views
Using next() x number of times with jQuery
What's an easy way to iterate x number of times using next() (applying the same function each time)?
I am working in Sharepoint and have limited control of the HTML; what I can do is find an element ...
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
4answers
244 views
Looping Through Images using JQuery
I am trying to use JQuery next() to add CSS to one image at a time highlighting it. When the user clicks a button it should highlight the next() image with a border. Instead though it is highlighting ...
0
votes
5answers
143 views
Does JQuery or JavaScript have a next statement/function to skip to the next iteration of a loop?
I have this code, where I would like that next skips to next iteration.
$.each(result, function(key, value) {
if (value.type == "individuel") {
cform["IN"] = "checked";
} else if ...
0
votes
1answer
154 views
How can I select the next div using jQuery?
I am quite a noob when it comes to jQuery and I'm trying to select the next element using the next() selector but having a little trouble in getting it to work!
What I'm trying to do is to activate ...
0
votes
0answers
131 views
Neighbour images as function parameters
I'm working on a lightbox-type gallery and the next and previous image functions are the last step to the complete component.Here is some working code snippet about loading an image
...
0
votes
4answers
165 views
jQuery next() - selector
I have a few sets of javascript codes and divs just below them:
<script type='text/javascript'>
jQuery(document).ready(function(){
...