Last active
October 12, 2015 01:47
-
-
Save harrypujols/3952396 to your computer and use it in GitHub Desktop.
Remove title attribute from image tag
This file contains 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
var imgs = document.getElementsByTagName('img'); | |
for (var i = 0; i < imgs.length; i++) { | |
imgs[i].removeAttribute('title'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment