I'm using jquery to manipulate an xml doc like this:
$(myXml)...
My xml has a root of <svg> and child <g> elements. 1 <g> has an id of "flowline" with multiple <path> elements. What would be an elegant selector to select all of these particular <path> elements? Something like:
$(myXml).find('svg g #flowline path')
?