Remove SVG Whitespace

Removes the whitespace around an svg

by Svetlana

HTML

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 125"><path d="M33.8 71.6c-1.3-.6-2.8 0-3.4 1.3l-2.1 4.8c-.6 1.3 0 2.9 1.3 3.5.3.2.7.2 1.1.2 1 0 1.9-.6 2.4-1.6l2.1-4.8c.5-1.2-.1-2.8-1.4-3.4zM49.4 80.1c-1.3-.6-2.8 0-3.4 1.3l-2.1 4.8c-.6 1.3 0 2.9 1.3 3.5.3.2.7.2 1.1.2 1 0 1.9-.6 2.3-1.5l2.1-4.8c.6-1.3 0-2.9-1.3-3.5zM82.7 22.5c-.4 0-.9 0-1.3.1-2.3-6-8.1-9.9-14.3-9-3-2.3-6.5-3.6-10.2-3.6-6.4 0-12.3 4.1-15.3 9.8-2.8-1.5-5.7-2.3-9-2.3-10.3 0-18.6 7.6-20.3 18.2-4.5 2.9-7.4 7.7-7.4 12.4 0 8.1 6.6 14.8 14.7 14.8h23.6l-1.1 2.4c-.6 1.3 0 2.9 1.3 3.5.4.2.7.2 1.1.2 1 0 1.9-.6 2.3-1.5l2.1-4.7h16c8.4 0 15.4-6.8 15.4-14.8 0-.5 0-.9-.1-1.3h2.5c6.8 0 12.4-5.5 12.4-12.2 0-6.5-5.6-12-12.4-12zm-7.6 25.7c0 5-4.8 9.4-10.2 9.4H19.6c-5.9 0-9.5-4.9-9.5-9.4 0-3.1 2.4-6.6 5.8-8.4l1.3-.7.1-1.4c.9-8.6 7.4-14.9 15.4-14.9 2.7 0 5 .7 7.3 2.1 1 .6 2 1.4 3 2.4l1 1 1-.3.3-.1c.7-.2 2.2-.3 3.1-.3 5.2 0 9.5 4 10.1 9.2l.4 3 2.9-.8c1-.3 2.1-.4 3.1-.4 2.7 0 5.2 1.1 7.1 2.8 1.6 1.4 2.6 3.3 3 5.3 0 .6.1 1 .1 1.5zm7.6-6.7h-4.1c-2.6-4.8-7.8-8.1-13.7-8.1-.6 0-1.2 0-1.8.1-1.9-6.5-7.9-11.2-14.7-11.2-.6 0-1.4 0-2.2.1 2-4.1 6.2-7.1 10.6-7.1 2.8 0 5.5 1.1 7.7 3.1l1.1 1L67 19c4.7-1.2 9 2.3 9.9 7.2l.6 3 2.9-1c.8-.3 1.6-.4 2.3-.4 3.9 0 7.1 3.1 7.1 6.9s-3.2 6.8-7.1 6.8z"/></svg>

JavaScript

var svg = document.getElementsByTagName("svg")[0];
var bbox = svg.getBBox();
var viewBox = [bbox.x, bbox.y, bbox.width, bbox.height].join(" ");
svg.setAttribute("viewBox", viewBox);
prompt("Copy to clipboard: Ctrl+C, Enter", svg.outerHTML);