Skip to content

Instantly share code, notes, and snippets.

@tomasfejfar
Created November 14, 2014 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomasfejfar/36b144c3cf40b839c0dc to your computer and use it in GitHub Desktop.
Save tomasfejfar/36b144c3cf40b839c0dc to your computer and use it in GitHub Desktop.
SVG bring to front
svgBringToFront = function (domElement) {
var parent = domElement.parentElement;
parent.removeChild(domElement);
parent.appendChild(domElement);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment