Skip to content

Instantly share code, notes, and snippets.

@JudeRosario
Created January 13, 2020 14:32
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 JudeRosario/a15ae1bf736cd654280778c7d1396f1a to your computer and use it in GitHub Desktop.
Save JudeRosario/a15ae1bf736cd654280778c7d1396f1a to your computer and use it in GitHub Desktop.
Get themes ADA Compliant by supplying defaults
$.each($('a'), function() {
alt = this.href.replace(/\/$/, "")
$(this).attr('alt', alt.substring(alt.lastIndexOf('/') + 1).replace(/-/g, " "));
});
$.each($('img'), function() {
alt = this.href.replace(/\/$/, "")
$(this).attr('alt', alt.substring(alt.lastIndexOf('/') + 1).replace(/-/g, " "));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment