nodename

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, FF3, Opera (latest Nov 12,2008) or Safari (again, latest). ...

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". I'm wondering if it's because this function executes when the document is ready? Is there a different place I should be doing this? Or is ...

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> <Long>-2.12561060173764</Long> <cost>9985</cost> </markers> </NewDataSet> I'm using Google Map API to parse and map these, using the following Javascript. function load() { if (...

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> <cpv3>Value3</cpv3> <zzz>Hello world!</zzz> </doc> It should get Value1,Value2,Value3 ...