3
votes
3answers
164 views
Finding the next input (of a parent?) with jQuery
Hi guys,
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() {
…
2
votes
4answers
572 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
3answers
24 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.
…
1
vote
3answers
481 views
jQuery nextAll — Click on h-element toggles all p-elements until next h
Hi, 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>
…
0
votes
2answers
22 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:
…
0
votes
8answers
99 views
JQuery select the next element
Hey,
I am trying to use JQuery to select the next element in a set of elements with the same class.
Here is the HTML setup:
<div class="sameClass selected">
<p>Text in here</p>
…
0
votes
2answers
247 views
Setting the focus to the next input in jQuery?
Hi guys,
I've currently got a script that'll check for the value of a select box, and then enable a text field right next to it, and then hopefully set focus.
I have this at the moment which works …
0
votes
4answers
793 views
Jquery - .next() with children of many parents
I'm writing a script to highlight table cells across multiple tables, in a calendar.
The days to be highlighted have the class "available".
This is the jQuery code currently:
…
