oliverfarrell / accessible-tabs

A JavaScript plugin for building accessible and responsive tabs.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aria-labelledby not aria-labeledby

goetsu opened this issue · comments

Hi,

I found a small glitch in your code :
el.setAttribute('aria-labeledby', 'tab-' + i);
must be changed to
el.setAttribute('aria-labelledby', 'tab-' + i);

@goetsu Good spot. It's been a while since I've done anything with this. It's in need of a rewrite.