There is an inline SVG element among my HTML form elements. When I navigate through my elements with the Tab key, the SVG element gets focused, in IE11 only, even if the SVG ele
In case you missed it, the answer was commented:
tabindex is part of upcoming SVG2 and is not yet supported by IE11. Have a look at this question for a work-around.
The answer in that question recommends adding a focusable="false" attribute to the SVG element.
focusable="false"
Thanks to @altocumulus