Created
July 31, 2019 02:26
-
-
Save pinkhominid/639e88a07b68f54a32acf1a8e961ca96 to your computer and use it in GitHub Desktop.
One-line hide a broken image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.addEventListener('error', e=>{if (e.target.tagName !== 'IMG') return; e.target.style.visibility = 'hidden';}, true) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment