Skip to content

Instantly share code, notes, and snippets.

@tsquez
Created September 2, 2015 09:55
Show Gist options
  • Save tsquez/59388918af8a7b6c8aa0 to your computer and use it in GitHub Desktop.
Save tsquez/59388918af8a7b6c8aa0 to your computer and use it in GitHub Desktop.
Adds screen reader span class to elements of menu in main sidebar
// Adds screen reader span class to elements of menu in main sidebar
jQuery('#secondary .menu a').each(function()
{
jQuery(this).wrapInner('<span class="screen-reader-text"></span>');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment