Skip to content

Instantly share code, notes, and snippets.

@M2vH
Created November 14, 2017 12:45
Show Gist options
  • Save M2vH/49ed98ba53d3c05a3b51ddbb24e6a6b5 to your computer and use it in GitHub Desktop.
Save M2vH/49ed98ba53d3c05a3b51ddbb24e6a6b5 to your computer and use it in GitHub Desktop.
function myCircleFunction() {
var x = document.getElementById("my_circle_svg");
if (x.style.width === "100%") {
x.style.width = "50%";
} else {
x.style.width = "100%";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment