<snip>
This is a sample of what is being loaded into document:
<InventoryItem>
<id>4</id>
<inventoryId>11033</inventoryId>
<inventoryType>2</inventoryType>
<description>100BBL Skidded pop tank, c/w tone tone paint, thie</description>
<initialRate/>
<monthRate>300.00</monthRate>
<dayRate>15.00</dayRate>
</InventoryItem>
document.getFirstChild().getLastChild().nodeValue = "" document.getFirstChild().nodeName = InventoryItem document.getFirstChild().nodeName = InventoryItem
JD
You could use JXPath to get the value of <description> instead of using DOM directly:
importPackage(org.apache.commons.jxpath);
var cx = JXPathContext.newContext(document);
var desc = cx.getValue("/InventoryItem/description");Chris
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
