Tagged Questions
6
votes
1answer
1k views
Jquery tabs next button
How can I create a button that will scroll to the next Jquery tab. I want to have a next button within the tabs that will scroll to the next tab, sort of like a step-by-step tutorial. How can this be ...
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
2answers
110 views
jQuery next (ish) selector
I've been banging my head against a wall with this code all morning and finaly decided to come here for some help.
I have the following markup.
<h3 class="element-title">Summary <span ...
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:
...
3
votes
3answers
5k views
jquery find next element with class
I'm having a brain fart here...I'm trying to find the next element with a class of "error" and hitting a wall.
In looking at the demo on jQuery's site, this should work, but doesn't.
...
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
3answers
71 views
jQuery looping .fadeIn and .fadeOut of p tags within div one at a time
The code below successfully fades in one testimonial for 6 seconds, waits 3 seconds, and then fades it out and moves on to the next. Once it reaches the third testimonial it jumps back to the first. ...
2
votes
2answers
38 views
JQuery.Next() with not selector not working as expected
I am trying to setup a rotating panel, however I have three states: active, inactive, disabled.
I only want to rotate between active and inactive panels and skip over disabled panels. If there is no ...
2
votes
3answers
137 views
Insert new DIV between two DIVs that have the same class and are immediate siblings
Struggling with this one for a while now. My markup simplified:
<div class=row>
<div class="somediv"></div>
<div class="somediv2"></div>
<div ...
2
votes
4answers
220 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 ...
2
votes
2answers
343 views
How to ScrollTo next & next & next… element
<div class="wrap">
<div class="layer">
<div class="post"></div>
<div class="post"></div>
<div class="post"></div>
<div ...
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
4answers
504 views
jQuery find next element with class
I have a quite simple question, that ate me 4 hours and is not yet solved: How to find next span with specific class with jQuery?
I have the following html
<tr>
<td ...
2
votes
2answers
685 views
jQuery animate to next image in div
I've got some images within a div which i'm trying to when I click the next button animate to the next one in the div
In this div I also have my previous and next button which I obviously don't want ...
2
votes
6answers
319 views
jquery problem using parent() and next() selectors
I have the following code:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Page</title>
<script class="jsbin" ...
2
votes
2answers
116 views
How to get an element with class after current one in JQuery?
Here is the sample html code:
<div id="current_element">Current element</div>
Many unknown tags...
<div class="target">This is target element</div>
Many other tags...
Note ...
2
votes
2answers
445 views
jQuery: how to find out when next() reaches the end, then go to the first item
I am displaying a series of elements using the next() function. Once I reach the end though, I want to go to the first element. Any ideas?
Here's the code:
//Prev / Next Click
...
2
votes
8answers
548 views
jQuery's next() on elements not next to each other
I have bits of horrible code I have to deal with
...
<div class="container">
...
<tr>
<td width="100" height="50">
<a class="swaps"><img ...
2
votes
3answers
798 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
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>
...
2
votes
4answers
3k views
jQuery toggle next two elements
I have a form select element that, when a certain value is selected, will toggle two other elements on the page (a dt / dd pair).
The event is triggered correctly, but I can't get the elements to ...
1
vote
2answers
35 views
Implementing jQuery .next() in a simple image slide show
jsFiddle is here: http://jsfiddle.net/qBQD4/
It's pretty simple really; I want the right arrow to move the images forwards, left arrow to move them backwards in a simple slideshow. I have multiple ...
1
vote
4answers
74 views
get next or live element with jQuery find
Alright, not sure if find() will be the correct method for this. I am using pretty photo and I am loading some inline content. Basically when pretty photo launches, it clones what is defined inline ...
1
vote
2answers
90 views
jQuery next() td across table rows
I have designed a custom calendar using html and jQuery. I want to highlight a range of k days (say 2 days) onhover on the start date. Available dates in my calendar are td of class 'available'. This ...
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
1answer
192 views
Next and Previous keypress Jquery
Hi I'd like to make my page scroll to certain divs when the next and previous arrow keys are pressed on the keyboard. I'd like it to specifically go to the next or previous div with the class name ...
1
vote
3answers
114 views
jQuery to retreve data when checkbox is checked
Instead of using a table, I have the following HTML showing a checkbox in col 1, a name in col 2, and an EMail address in col 3. The HTML looks like this:
<div class="rowLight">
<div ...
1
vote
4answers
245 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 ...
1
vote
6answers
116 views
JQuery .next() function getting all the next elements not one
I have built a JQuery CSS3 image gallery. The problem is that the next function in the code below is not working problem.
function gallery() {
var islide = $('.cornerimg:visible');
...
1
vote
2answers
79 views
jQuery - using next()
In the following situation, I would like to add a class "highlight" to the succeeding div.second when div.first > a is clicked.
html:
<li>
<div class="first">
<a ...
1
vote
2answers
362 views
jQuery - live() not working with next() from appended div
The purpose of this element is to have a collapsible navigation system based entirely from a simple unordered list. By default all nested lists will be hidden, and .toggle divs (buttons) attached to ...
1
vote
2answers
187 views
Using jQuery, when drop down box changes, I need another input field to become required using Coldfusion
I have a form that outputs systems assigned to a project. The systems are looped and new rows can be added dynamically so using ID attribute is not available.
When the user make a change to the ...
1
vote
4answers
184 views
how to judge an element's previous or next element exist with jquery?
suppose I have an <ul>
:
<ul>
<li></li>
<li></li>
<li class="test"></li>
</ul>
How can I judge the .test have its next element with ...
1
vote
1answer
675 views
Jquery Cycle - 'next', 'prev', & pause actions reset autostop & autostopCount?
I'm working with a Jquery cycle slideshow, and I want to stop at the last slide, but autostop seems to reset itself upon any resume, next, or prev action.
For example, say I've got this slideshow:
...
1
vote
3answers
73 views
jQuery check for adjacent selector
I am trying to check for the existence of an adjacent (next) selector but I am clearly writing it incorrectly...
My HTML
<div id="container">
<div class="about"></div>
<div ...
1
vote
1answer
251 views
jQuery to toggle waiting image while ajax call is made
I'm learning how to traverse the DOM so this question is related to that.
I'm using Coldfusion to output some database results. The loops are looping over table data, not looping over table rows. ...
1
vote
1answer
278 views
jQuery next() not working with live()
When I try and use the jQuery next() method it doesn't work with live().
First off, here is my code:
$(".toggle_button").live('click', function() {
$(this).html($(this).html() == '-' ? '+' : ...
1
vote
1answer
255 views
Creating Next/Previous Navigation
I am working on a site that has multiple sections, each with around 5-10 projects within them. I am trying to create a next/previous navigation that will allow you to scroll through the projects ...
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
396 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>
...
1
vote
2answers
3k views
jquery, find next element by class
How can i find the next element by class.
i tried with $(obj).next('.class'); but this return only classes in $(obj) parent
I need to take the next element anywhere throughout the code by class ...
1
vote
2answers
127 views
Use jquery to pull in the 'next' content
I'm trying to add a 'next' button to my content rotation. The content for each slide are on subpages. It works to click on each slides actual nav link, but the 'next' link won't pull in the content I ...
1
vote
1answer
436 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"),
...
0
votes
0answers
31 views
Jquery next or previous buttons dynamically load next image
I have a series of images that are brought in dynamically when the corresponding thumbnail is pressed. When a thumbnail is pressed the corresponding image is displayed dynamically in a div that slides ...
0
votes
1answer
18 views
jquery image slider: reach last image, must click 'next' to go back to first
I have used the nivo slider and a few others. Editing those aren't a problem. This time I am trying to create my own simple slider on my own. I can have images fade in/out into one another, but after ...
0
votes
3answers
63 views
Jquery - find the next input:text element after a known element
I have an id for a <tr id="tagTR">
Given the above, is it possible to find the next input:text element regardless of any other mark up in between . Is there a jQuery selector that I can use for ...
0
votes
4answers
101 views
jQuery add empty label tags next to every radio button or checkbox
I need a simple jQuery code that will add an empty label tag next to every radio button or checkbox
So for example:
$('input[type="radio"]').next().add("<label for="radio"></label>");
...