Tagged Questions
The nodelist tag has no wiki summary.
11
votes
4answers
988 views
Fastest way to convert JavaScript NodeList to Array?
Previously answered questions here said that this was the fastest way:
//nl is a NodeList
var arr = Array.prototype.slice.call(nl);
In benchmarking on my browser I have found that it is more than 3 ...
10
votes
4answers
1k views
Speeding up xpath
i have a 1000 entry document whose format is something like
<Example>
<Entry>
<n1></n1>
<n2></n2>
</Entry>
<Entry>
...
5
votes
2answers
228 views
How to distinguish between live and non-live NodeList collections?
Both document.getElementsByTagName('div') and document.querySelectorAll('div') return NodeList collection. The only difference is that first method returns live-collection and second one - a static ...
4
votes
2answers
223 views
Find elements in a Node without the proper namespace, in Java
So I have a xml doc that I've declared here:
DocumentBuilder dBuilder = dbFactory_.newDocumentBuilder();
StringReader reader = new StringReader(s);
InputSource inputSource = new InputSource(reader);
...
4
votes
7answers
8k views
JavaScript NodeList
is there a way to join 2 NodeLists returned by 2 calls of document.getElementsByTagName?
Say, I have the following code
var inputs = documentElement.getElementsByTagName('input');
var selects = ...
3
votes
1answer
241 views
How is the NodeList implemented?
The DOM NodeList (as returned e.g. by element.getElementsByTagName) is an interesting object, in that it is not a snapshot, but reflects changes to the document made after you have created the ...
2
votes
2answers
60 views
Why do nodelists contain extra undefined items that are not reflected in its length property?
Background:
I came across a very strange phenomenon while working with a node list. I wanted to use getElementsByClassName or something similar and then sort it. I decided one way would be to ...
2
votes
2answers
80 views
XPath expression to verify a NodeList
I have a NodeList in Java and this XML file, (just a part of it)
if I have
<Book title="aaa" author="bbb" price="12" year="2011" />
I can use an XPath expression to see if some conditions ...
2
votes
0answers
252 views
Retrieving Youtube Thumbnail urls using gdata?
Ive been researching stuffs on how to get data from Youtube, basically what I want to do is to get some information on videos (like titles, descritions, and thumbnail urls) from a playlist (ex: ...
2
votes
4answers
84 views
How to retrieve the text in actual-data tag?
My xml file is as follows :
<xml>
<group id="1">
<dstport>8080</dstport>
<packet id="1">
<comp type="const">
...
2
votes
2answers
669 views
Speed of [].forEach.call(…?
I'm a big fan of using the forEach method on nodeLists like this:
var nodes = document.querySelectorAll(".foo");
[].forEach.call(nodes, function (item) {
//do stuff with item
});
I was ...
2
votes
3answers
953 views
Can I just hand groovy's markupbuilder a node list?
I'm doing some XML processing with groovy. Specifically, I'm inhaling an XML file via XMLParser, doing a whole batch of in-memory processing, and then serializing the resulting data back out to XML ...
1
vote
3answers
22 views
Converting the result type of string-join to NodeList
I need to deal with legacy code which evaluates XPath expressions expects the results to resolve to NodeList. The code uses NodeList to identify how many nodes are selected by the XPath expression. ...
1
vote
2answers
33 views
DOM getElementsByTagName() returning Nodes with NULL Values
I have an XML file as follows.
When I use getElementsByTagName("LEVEL2_ID"), I do get a NodeList with Nodes, but those Nodes have NULL values (in other words, getNodeValue() on each result node will ...
1
vote
2answers
268 views
Javascript, viewing “object nodelist”
Doing an alert() on one of my variables gives me this result
[object NodeList]
How can I see all the values in that?
Note; I am on Firefox and dont know how to use chromebug so its not ...
1
vote
2answers
2k views
Create XML document using nodeList
I need to create a XML Document object using the NodeList. Can some one pls help me to do this. I have shown you the code and the xml below
import
javax.xml.parsers.DocumentBuilderFactory;
import ...
1
vote
1answer
178 views
How do I create a real NodeList?
I'm trying to make my current project IE7-compatible. We are not using jQuery, but instead using querySelectorAll for our selector needs. However, IE7 doesn't support querySelectorAll, so I've ...
1
vote
2answers
519 views
Convert NodeList to array
I'm having a hard time converting a NodeList to an array in IE 8. The following works perfectly in Chrome, but in IE 8 toArray() is not recognized as valid:
NodeList.prototype.toArray = function() {
...
0
votes
3answers
49 views
what is the most fast, safe and correct method for looping through whole DOM in pure JS?
By safe I mean the fact that NodeList created by document.getElementsById('*'); is a live object. Some elements are added or removed dynamically as JS engine loops through it.
The thing I intend to ...
0
votes
1answer
37 views
Does PHP usort() work on DOM nodeLists?
I have a bunch of data stored in an XML file that I print out as a list with PHP. I want the user to be able to choose how to sort the list.
I experimented a bit with usort(), but it doesn't seem to ...
0
votes
0answers
22 views
How can I rearrange a nodelist based on variable?
I want to rearrange a nodelist I am parsing from an xml file online, I am using DOM parser. I have a variable that the user can set. My nodelist is pulling attributes from tagname
example
<a ...
0
votes
0answers
20 views
How to use Javascript NodeList in org.w3c.dom.NodeList in Java?
How can I achieve something like this?
NodeList nl = executeJS(documentElement.getElementsByTagName('input'););
0
votes
1answer
50 views
Autoplaying a <video> element using javascript
I have a few elements set up in my html with the autoplay option included. I have found that Chrome doesn't seem particularly willing to autoplay these videos for whatever reason. I'd like to add a ...
0
votes
3answers
67 views
Passing arrays to php page
I've been struggling on how to solve this. I wasn't able to find any solutions over the internet.
This a part of the code:
var params = "nome=" + encodeURI(document.getElementById("nome").value )+
...
0
votes
2answers
82 views
Why is the JavaScript NodeList immutable?
Recently I came across the fact that the childNodes property of an element returns a NodeList and not an Array. Now I understand that a NodeList is meant to be a live collection of elements, but I ...
0
votes
1answer
702 views
Parsing XML with XPath in Java - Get data from XML file with Xpath and NodeList in Java
I have this xml file and I want to get some values with Xpath.
The half of job is done but I get some trouble in the last part of file(States Node)
<?xml version="1.0" encoding="UTF-8"?>
...
0
votes
3answers
471 views
NodeList object in javascript
Can anyone tell me what kind of object the NodeList is. I read that it is an array-like object and that it can be accessed via bracket notation, for example var a = someNode.childNode[0];. How is this ...
0
votes
3answers
89 views
PHP foreach Loop Element Index
I have an XPath query that gets Genres of a movie.
$genreXpath = $xml_data->xpath("//category");
I get the attributes from $genreXpath like this
$genreName=array();
$genresID=array();
$i=0;
...
0
votes
1answer
133 views
Evaluate if result of DOMXpath->query returns match
How can I evaluate if DOMTXpath->query actually returns data. Right now I am doing ($xml is a DOMXpath object):
foreach($xml->query($xpath) as $node)
{
echo $node->textContent;
}
But if I ...
0
votes
2answers
75 views
Can a javascript attribute value be determined by a manual url parameter?
I am trying to display data from an external .jsp file, which is set up something like this:
<tag>
<innertag1 id="1">
<innertag1 id="2">
</tag>
<tag>
<innertag2 ...
0
votes
3answers
627 views
How can I reorder/sort a nodelist in javascript?
I have what I think should be a straightforward question; let me quickly explain:
In my javascript, food.xml is read in with:
getMenuXml.open("GET","food.xml",false);
getMenuXml.send();
...
0
votes
1answer
390 views
Dojo.NodeList.append()
This function is giving me trouble running something similar to the example provided at: http://dojotoolkit.org/api/1.5/dojo/NodeList#append
My attempt:
<div class = "foo"><p>Hello ...
0
votes
1answer
309 views
How to read an attribute tag with an equals sign from XML in Java?
I'm parsing an XML file through Java, and am able to parse through Nodes in the XML file that appear as:
<name><given>familyName</given></name>
by using code such as the ...
0
votes
4answers
671 views
Javascript - Concatenate Multiple NodeLists Together
I was originally asking for an elegant way to simulate the Array.concat() functionality in IE or older browsers, because it seemed that concat was not supported. Only, of course it is and the reason ...
-1
votes
7answers
79 views
For Loop error
i want to insert nodes which are fetched from other part of the program into a NodeList.
static void NodeCheck(Node node)
{
NodeList NodeArray = null;
for(int ...