Tagged Questions
The nodename tag has no wiki summary.
5
votes
1answer
12k views
jquery nodename returning undefined
This code isn't for anything in particular. I'm just trying to successfully get the tagName or nodeName of an element. However, when I run the following code, I always get an alert saying "undefined". ...
1
vote
2answers
52 views
a.nodeName is undefined Jquery error
Script
function deleteThisRow()
{
$(this).closest('tr').fadeOut(400, function(){
$(this).remove();
});
}
HTML
<tr><td>blah blah ...
1
vote
3answers
347 views
Replace Node Name
Is it possible to replace a nodes name? Like:
HTML:
<strong id="element">Text</strong>
Javascript:
var element = document.getElementById("element");
element.nodeName = "b";
As I ...
1
vote
4answers
4k views
IE6 and IE7 Sometimes Have A jQuery Bug With 'nodeName' is null or not an object
I'm having a problem where a jQuery setting against an .html() property on a selected element is returning the error 'nodeName' is null or not an object. This only occurs on IE6 and IE7, but not FF2, ...
0
votes
2answers
23 views
XSL count of this node verses nodes with the same name (dynamically)
I have the following XML:
<record>
<fruit>Apples</fruit>
<fruit>Oranges</fruit>
<fruit>Bananas</fruit>
<fruit>Plums</fruit>
...
0
votes
4answers
88 views
jquery find index() of same node name
I have this setup, just to find the index() of an element, but it should look at elements of the same level with the same nodename.
The returning numbers are not as expected. See the code comment. I ...
0
votes
1answer
55 views
Convert #text from getNodeName to string
I am parsing a XML file as follows:
<ROW>
<INDUSTRY_ID>1</INDUSTRY_ID>
<ID>314</ID>
</ROW>
Here's my code:
NodeList titleList = ...
0
votes
2answers
275 views
Xquery - using variable to find node with namespace prefix
I am trying to find a node (prefixed with a namespace) using variables in my xquery like so:
declare variable $libx_ns as xs:string external;
declare namespace libx=$libx_ns;
declare variable $type ...
0
votes
3answers
204 views
Xquery node values where node starts with same text
How to create xquery to select node values where node name starts with some text. for example document
<doc>
<cpv1>Value1</cpv1>
<cpv2>Value2</cpv2>
...
0
votes
1answer
5k views
Chrome says Cannot read property 'nodeName' of undefined, IE6 is fine, using Google Map API
I have an XML file in the following structure.
<NewDataSet>
<markers>
<name>name text</name>
<desc>desc text</desc>
<Lat>57.149328033771</Lat>
...