Hi, I have started a site using x theme and I need the site to be ADA compliant. One request from my client is to be able to tab through all of the links on each page and while tabbing through, the link will need to change in color. How can I integrate this?
Hi there,
Our theme is not Ada Compliant and you will need to do custom development to be able to get this to work and that is outside of our support scope. We will do our best to give you proper getting started guide but the actual implementation of the matter is on your shoulders.
You are always welcomed to use the paid services of freelancers in the X Facebook User Group if needed.
The idea is to search for all anchor tags in a page and assign tabindex
attribute to them with a counter which increases. Test the case by adding the code below to X > Launch > Options > JS:
jQuery('a').each(function(index) {
jQuery(this).attr('tabindex', index);
});
But the point is that not every time the queue of anchor tags will match the visual preferred index, in such cases you need to go over the visual anchors one by one and assign them proper tab index.
Thank you.
Hi Christopher. Thank you.
You are most welcome!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.