I am working on SVG script
there are getElementById or getElementsByTagName
but I can\'t find any method to get elements by position
such as get the
You can try this:
$("svg").find("[x='10'][y='10']");
It will give all the elements with svg which have x = 10 and y = 10.
Working demo