Tagged Questions
3
votes
3answers
6k 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
1answer
33 views
Call to jQuery next() not returning the nextSibling object
My document contains a text node with a span node after it. In the Chrome inspector, the text node's nextSibling object is the span node. However, calling textnode.next() returns 0 objects. I'm not ...
0
votes
5answers
8k 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:
...