Skip to content

Instantly share code, notes, and snippets.

@ThoundsN
Created June 19, 2021 11:22
Show Gist options
  • Save ThoundsN/3c6a3317bdfa10643a465a688912f280 to your computer and use it in GitHub Desktop.
Save ThoundsN/3c6a3317bdfa10643a465a688912f280 to your computer and use it in GitHub Desktop.
Remove gif in medium
var elements = document.getElementsByTagName("iframe");
while (elements.length) {
elements[0].parentNode.removeChild(elements[0]);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment