Skip to content

Instantly share code, notes, and snippets.

@bjornpagen
Created January 31, 2023 20:32
Show Gist options
  • Save bjornpagen/57f7c3c767de01d3b12b3c44356fd062 to your computer and use it in GitHub Desktop.
Save bjornpagen/57f7c3c767de01d3b12b3c44356fd062 to your computer and use it in GitHub Desktop.
A JavaScript function to delete all elements with the class notion-toggle from the DOM.
function deleteNotionToggleElements() {
const elements = document.getElementsByClassName("notion-toggle");
while (elements.length > 0) {
elements[0].parentNode.removeChild(elements[0]);
}
}
document.addEventListener("DOMContentLoaded", function() {
deleteNotionToggleElements();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment