HTML to Create Tabs That Work for Keyboard Navigation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If I make tabs with the code below and then save the page and try tabbing through it, the first tab does not highlight. That means I can't see I am on that tab. If I know I am on the first tab, I can then move between the tabs by using the arrow keys.
Does anyone know what needs to be added to this code to make the first tab highlight when you navigate to it with a keyboard? My school does not have Cidilabs, so I need to use code to make tabs.
<div class="enhanceable_content tabs">
<ul>
<li><a href="#fragment-1"><span>TEXT TAB 1</span></a></li>
<li><a href="#fragment-2"><span>TEXT TAB 2</span></a></li>
</ul>
<div id="fragment-1">CONTENT OF TAB 1</div>
<div id="fragment-2">CONTENT OF TAB 2</div>
<div></div>
</div>
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi! I was curious about your question and I actually asked ChatGPT. This is what I got:
Here’s how you can adjust your code for the Canvas environment:
- Add
role="tablist"
to the<ul>
element. - Add
role="tab"
andtabindex="0"
to the first<li>
element (the first tab) andtabindex="-1"
to the other tabs so that only the active tab is initially focusable. - Use
aria-selected="true"
for the first active tab andaria-selected="false"
for inactive ones. - Use
aria-controls
to associate tabs with their respective panels.
Here’s the updated code that you can paste into the Canvas HTML editor:
<div class="enhanceable_content tabs">
<ul role="tablist">
<li role="tab" tabindex="0" aria-selected="true" aria-controls="fragment-1">
<a href="#fragment-1"><span>TEXT TAB 1</span></a>
</li>
<li role="tab" tabindex="-1" aria-selected="false" aria-controls="fragment-2">
<a href="#fragment-2"><span>TEXT TAB 2</span></a>
</li>
</ul>
<div id="fragment-1" role="tabpanel" aria-labelledby="fragment-1" tabindex="0">CONTENT OF TAB 1</div>
<div id="fragment-2" role="tabpanel" aria-labelledby="fragment-2" tabindex="0">CONTENT OF TAB 2</div>
</div>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I hate to be the bearer of bad news, but the "enhanceable_content" tabs solution is no longer officially supported by Instructure. These tabs widgets rely on jQuery, which has been a long-used JavaScript library for aspects of the Canvas user interface. Instructure announced several years ago that they were moving away from jQuery for the user interface and will eventually remove it. For now these still work, but they will eventually be removed once the remainder of the Canvas UI no longer depends on jQuery. Most of the UI now depends on React instead.
Besides that, the "enhanceable_content" tabs are not compatible with the Canvas mobile apps and they do not follow the recommended W3 recommended tabs pattern for accessibility compliance.
One recommended alternative is for your Canvas administrator to add custom JavaScript to your Canvas instance to enable an accessible tabs widget. The W3 website has some good starter code, but because the Rich Content Editor forbids the button tag (<button></button>), you will need to add additional code to parse some sort of allowable HTML structure in the RCE, like unordered lists, to convert those to tab buttons and tabs panels. The code will also need a mutation observer to ensure that it runs after all of the page elements are rendered by React.
A more simple alternative is to use the HTML <details> and <summary> tags to create a sort of "collapsible tab." These are native HTML tags, so you do not need to worry about adding custom code to Canvas, worry about accessibility compliance, etc. These also work in the mobile app too.
Best wishes on making your Canvas pages look better!