I would like to select the last path in an SVG and remove it. I've tried a variety of methods, in pure javascript and in jquery and I don't seem to be able to access the SVG properly or its paths.
HTML:
<div id="thesvgwrapper">
<svg id="thesvg"...><path ....></path><path ...></svg>
</div>
I CAN clear the SVG using:
$('svg#thesvg').empty();
I CAN see the SVG's contents using:
var svgwrapper = $('#svgwrapper');
var svgcontents = $(svgwrapper).html();
alert(svgcontents);
However, I CANNOT similarly select the SVG and see it's path contents...
my goal is something like
$('#thesvg path:last').remove();
thanks a million for any help