I am accessing an existing DOM SVG element in my HTML using
svgEle = SVG.adopt(svgDocument.getElementById('svg'));
How can I access child elements of svgEle without adopting them individually? I have tried
elementById = svgEle.select("#" + id);
and
elementById = svgEle.get(id);