Ask Ben: Selecting XML Nodes That Have A Given Parent Node Using XPath

<!---
	Query for all name nodes that are contained within a
	book node.
--->
<cfset arrNameNodes = XmlSearch(
	xmlData,
	"//book/name"
	) />

For Cut-and-Paste