Skip to content

Instantly share code, notes, and snippets.

@drldcsta
Created February 12, 2021 04:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drldcsta/6e9142060b07dde2162bed3b0f9c971f to your computer and use it in GitHub Desktop.
Save drldcsta/6e9142060b07dde2162bed3b0f9c971f to your computer and use it in GitHub Desktop.
Turns alt text tags into tool tips
javascript:(function(){document.getElementsByTagName('img').forEach(i=>{
if(i.alt==="Image"){
i.title="No Alt Text"
}else{
i.title=i.alt
}
})})();
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment