Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
3answers
17k 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" ...
10
votes
2answers
12k views

jQuery XML Parsing/Traversing

I have the following XML- <rows> <row id="5"> <cell>Item1</cell> <attrs> <attr> <id>1</id> ...
8
votes
6answers
14k views

Find the next element that is not immediate?

I want to find the first span element after class counter, in code something like this: <div class="counter"></div> <p></p> <span></span> It seems like the ...
7
votes
1answer
9k views

Find the element before and after a specific element

I have a list with links I use with tabs. It looks like this: <ul> <li><a href="#">First tab</a></li> <li><a href="#">Second tab</a></li> ...
7
votes
7answers
8k views

jquery - How to select all content between two tags

I have a document with headings and unordered lists. How can I use JQuery to select a given heading (by its unique class name) AND all content between that heading and the next heading? Update: ...
6
votes
3answers
198 views

How to optimize two-dimensional hash traversing in Perl?

I have a hash of hashes %signal_db. A typical element is: $signal_db{$cycle}{$key}. There are 10,000s of signals, and 10,000s of keys. Is there any way to optimize (timewise) this piece of code: ...
5
votes
1answer
126 views

Why is traversal forward only most of the time?

I have noticed that many iterators or data readers are forward only like DataReader, XmlReader, IEnumerator, any many more (you got the idea). So simply asking why are they forward-only usually when ...
4
votes
1answer
123 views

jQuery traverse inside p

So I'm having a problem with some jQuery. Basically, I need to create a function that will split a paragraph, when it becomes too large for a container. Half of it will remain in the current ...
4
votes
5answers
417 views

jquery-traversing: select -> option -> text

I want to compare a variable with a select -> option -> text selected in order to change the "selected" attrib, here is my code, it works but I think is not the best way to write it, excuse my ...
4
votes
1answer
176 views

What is the most efficient way to traverse a tree in python?

Assuming I have a list of objects that have the following fields parent value and this defines a tree structure, similar to a directory tree. I want to traverse the list in a pre-order fashion. ...
4
votes
2answers
250 views

How can I find all text nodes between to element nodes with Javascript/JQuery?

Given the following HTML-Fragment: <div> <p> abc <span id="x">[</span> def <br /> ghi </p> <p> <strong> jkl <span ...
3
votes
1answer
115 views

Add element's children to jQuery set without leaving the chain

Is there a possibility to add the children of elements in a jQuery set to the set without leaving the chain? I.e., with leaving it would look like this: var set = $('.some-elements'); set.add('*', ...
3
votes
1answer
172 views

Which algorithm would be suitable here? Traversing a series of interconnected nodes, covering them all with minimal repetition

I'm helping out a friend, writing him a program. He is re-recording the soundtrack to the old Lucasarts game Tie Fighter. The game used the iMuse system - each 'track' was made up of a number of small ...
3
votes
2answers
332 views

PHP script to automatically create file structure representation

Using PHP, I'm trying to create a script that will navigate to the root directory of a website, and from there, using scandir() or glob() (those being the only directory scanning functions I've ...
3
votes
1answer
92 views

Finding a particular parent of an HTML DOM element

Lets say I have the following: <table><tr><td> <table> <!-- I want a reference to this table --> <tr> <td> ...
3
votes
2answers
209 views

what is the name of snake-like image traversing algorithm?

The algorithm name is after some mathematician. You can traverse image line by line of course, but you can traverse image using recursive generated path, which the basic blocks looks like: U This ...
3
votes
1answer
347 views

Traverse a custom html string with Jquery

I am not able to traverse a custom html string with Jquery, like in this example: html = '<a href="http://www.site.com"><img width="800" src="http://www.site.com/pic.jpg" alt="" ...
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
372 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
140 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 ...
2
votes
5answers
67 views

jQuery get parent sibling for this element only

I cant figure out how to write this. See my mark up structure, which is repeated multiple times on a page. <div class="module"> <div class="archive-info"> <span ...
2
votes
2answers
136 views

Python traversing two lists

I found this nice statement in a tutorial: for x,y in [(x,y) for x in listA for y in listB]: Now, as for me, I understood, that that statment will traverse listA and listB and x is a value of ...
2
votes
6answers
69 views

p tag will slide down but wont slide up

Have a question and answer system where the answer starts of hidden, then when the question is clicked, the answer slides down. This is working fine, but then I would like it so that if the question ...
2
votes
2answers
64 views

Traversing hidden li elements

I need to add classes to li items in a ul #colorlist at specific places. So every 15th li item becomes one class, every 16th becomes another (the 15th needs a rollover to flip around and the 16th is ...
2
votes
2answers
164 views

Need help in reading .txt file which contains a table with blanks?

Consider this - "ID_REF" "GSM887" "GSM888" "GSM889" "GSM890" "GSM891" 10              ...
2
votes
2answers
199 views

asociative array pointers / traversing associative array

heyo. Does next() and prev() work on associative arrays? I'm trying to traverse through a dataset that uses two records to describe one "game" if you will. So when I'm on the second record w/ ...
2
votes
1answer
417 views

php jquery like selector engine

Does anyone know a library that allows DOM traversing in strings using a jquery like selector engine? Thanks
2
votes
4answers
275 views

Find the inner most text with javascript (jquery) regardless of number of nested elements and replace it

If I have this: <a href="#" id="the-link"><em>any random text</em></a> Or this: <a href="#" id="the-link">any random text</a> Or this: <a href="#" ...
2
votes
2answers
1k views

jQuery move list item to end of list

I have this list that can be sorted with sortable. How can I move the li item with class .neutral to the end of the list when sorting is finished? $(".thumbs").sortable({ stop: function(event, ...
2
votes
2answers
423 views

jQuery traversing elements get all previous elements that match selector

I have a collection of divs that contain either images or checkboxes. My end goal is to have the onclick event on the checkbox also check all previous checkboxes. Here is my layout (dynamically ...
2
votes
4answers
355 views

Python; Linked list and traversing!

Starting some programming with python at school now, and I don't know how to proceed with this problem. Any thoughts? Input consists of integer separated by line breaks. Your program should submit ...
2
votes
3answers
646 views

A recursive method to traverse a multi-dimensional array in PHP

I need a method to traverse a multidimensional array in PHP without using function calls itself. Basically I have an array like this: $data = array( 'hoge' => 123, 'foo' => 456, ...
2
votes
4answers
175 views

Changing A Different Class Display on Hover with Jquery

Ok, here's what I'm trying to do. I have a DIV box with a child element set with DISPLAY: NONE;. I'm trying to use Jquery so that when the mouse enters the parent DIV box, the child element is made ...
2
votes
2answers
427 views

Using jQuery to return next list item in a filtered list

I have the following list <ul> <li id="item1">Item 1</li> <li id="item2">Item 2</li> <li>Item 3</li> <li id="item4">Item 4</li> ...
2
votes
4answers
552 views

jQuery show/hide to cycle through tables

I need to set up jquery to cycle through tables, making sure it shows/hides the right one. The basic HTML structure is: <p><a href="#" class="month-next">Next Month</a></p> ...
2
votes
4answers
303 views

jquery traversing and tables

This problem is making me a bit crazy. I have something like this <h3>Feeds <span><a class="smallbutton create_feed" href="javascript:;"> <strong>Create ...
2
votes
3answers
337 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
2answers
80 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 ...
2
votes
3answers
5k 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) ...
2
votes
3answers
986 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> ...
2
votes
2answers
336 views

Way(s) to extract selected node values from this XML Markup

Given the (specimen - real markup may be considerably more complicated) markup and constraints listed below, could anyone propose a solution (C#) more effective/efficient than walking the whole tree ...
2
votes
6answers
2k views

How can I traverse a directory tree using a bash or Perl script?

I am interested into getting into bash scripting and would like to know how you can traverse a unix directory and log the path to the file you are currently looking at if it matches a regex criteria. ...
2
votes
7answers
12k views

jquery next siblings

I've been trying to get this problem solved, but I can't seem to figure it out without some serious workarounds. if I have the following HTML: <ul> <li class="parent"> headertext ...
2
votes
3answers
1k views

selecting nth div (and beyond) in jQuery

Say I have a div containing an unlimited number of child divs. Is there an easy way to get jQuery to select the nth div and every div after it so I can change those (in this case, call remove() on ...
1
vote
3answers
44 views

Select next() with jQuery

I have a div.expander which is the button to show/hide all the table rows (tr) in the next (following) table. The problem I am having is selecting the table row to open and close. My code opens and ...
1
vote
3answers
27 views

jQuery Traversing to add and remove HTML content

Having trouble getting to this span tag to add and remove HTML content for the toggle arrow. $('h3 + p').hide(); $('h3').click( function() { $(this).next().slideToggle('normal'); }); if ...
1
vote
1answer
17 views

Programmatically maintaining sitemaps

Hoping someone can chime in on an ideal methodology. I don't want to run my site through a crawler every month to add new pages to my sitemap, I'd like some robust systematic method to do so, because ...
1
vote
3answers
190 views

c# .net xpath not picking out elements when traversing

I am working on a page that uses XPATH to traverse an XML document to pull certain data elements and build a string based on them. I am able to count the elements correctly, but when trying to order ...
1
vote
2answers
974 views

<HTMLDivElement> has no method 'siblings'

Im trying to change a sibling of a div element and this is the statement i used $('.edit').click(function(){ this.siblings('.innerInfo').html("success"); }); It keeps throwing the ...
1
vote
3answers
182 views

Algorithm to find duplicates in multiple linked lists

What is the fastest method of finding duplicates across multiple (large) linked lists. I will attempt to illustrate the problem with arrays instead just to make it a bit more readable. (I used numbers ...

1 2 3