Last active
December 5, 2019 22:45
-
-
Save balexand/2f0edd43335c0ed0b78e7606749f6d76 to your computer and use it in GitHub Desktop.
svg bbox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var svg = document.getElementsByTagName("svg")[0]; | |
var bbox = svg.getBBox(); | |
[bbox.x, bbox.y, bbox.width, bbox.height].join(" "); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment