1
vote
3answers
22 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
2answers
174 views
F# :: traversing lists There and Back Again
This is homework :-)
Write a function that counts the number of elements in the list that are larger than or equal to the average (using integer division for simplicity).
Using just a single …
3
votes
3answers
54 views
algorithm to traverse 3D coordinates without revisiting
Say we have a set of 3D (integer) coordinates from (0,0,0) to (100,100,100)
We want to visit each possible coordinate (100^3 possible coordinates to visit) without visiting each coordinate more than …
0
votes
3answers
37 views
jquery select unique item
I am having issues with selecting a certain element in my html
When I click on the link with class "event_rsvp", I want to effect the HTML of the span in the next li with the class of …
2
votes
3answers
151 views
c++: pass function as parameter to another function
i am currently implementing a binary tree in c++ and i want to traverse it with a function called in_order().
is there any way to pass a function as an argument, so that i can do things like below …
2
votes
1answer
147 views
jQuery find parent form
i have this html
<ul>
<li><form action="#" name="formName"></li>
<li><input type="text" name="someName" /></li>
<li><input type="text" …
1
vote
1answer
79 views
jquery bind event
html:
<ul>
<li><input type="submit" id="myId" value="someVal"/>
</ul>
jQuery
$('ul').find('input[type="submit"]').click(function{
alert('nasty alert')
…
2
votes
2answers
42 views
Most succint way to refer to a newly created object in jQuery?
I have a function called on the click of a link within a TD. Upon clicking, I traverse back up the DOM to the TR that the link was within, then create a new TR after it.
So far so good.
Now that …
0
votes
3answers
53 views
jquery traversing
when i click on a link i take it's href value in a variable (the number represents an unique id), then...i have a separate ul:
<ul class="class_one">
<li class="class_two"><a …
1
vote
1answer
79 views
jquery traversing - there has to be a better way than mine!
Hi Folks,
I'd like to know if someone has a better way to access the elements #type and #type_new based on my html:
<tr>
<th>Type of Organization</th>
<td id="toggle">
…
0
votes
3answers
253 views
tree traverse recursive in level-first order and depth-first order
Hello,
Is there any algorithm can traverse a tree recursively in level-first order and non-recursively in postorder.Thanks a lot.
0
votes
1answer
218 views
Traversing list elements with jquery
Hi folks,
I'm building a micro site at the moment and I have a problem. I want to scroll to the different list elements by clicking on my menu. This is working fine. But the problem is, by using the …
1
vote
3answers
395 views
jQuery: get immediate next element after the current element
Hi i need set focus to the element that is immediate next(and in other case immediate prev ) to the current element
eg
<li>item1</li> <- prev element (get this element)
…
1
vote
3answers
131 views
jQuery: Getting the two last list items?
I want to apply a special class to the two last list items in an unordered list with jQuery. Like this:
<ul>
<li>Lorem</li>
<li>ipsum</li>
<li>dolor</li>
…
0
votes
4answers
164 views
traversing classes using Jquery
Hi, I'm brand new at working with Jquery, this is actually my first real project with it, and I'm having a little bit of trouble. Here is my HTML: Edit: alright, I fleshed out the code, and included …
