Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hideya/d99f8b0ec34ce4fdcc13d5b5dcda7faf to your computer and use it in GitHub Desktop.
Save hideya/d99f8b0ec34ce4fdcc13d5b5dcda7faf to your computer and use it in GitHub Desktop.
document.addEventListener("DOMContentLoaded", function() {
var elems = document.getElementsByClassName("hide-after-load");
for (var i = 0; i < elems.length; i++) {
(function() {
var elem = elems.item(i);
window.addEventListener("load", function() {
elem.style.display = "none";
});
})();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment