For accessibility, I try to send the focus in the Fancybox window once it is opened.
I add a tabindex to 0 on the container of the Fancybox and I send the focus on it. This doesn't work.
afterLoad: function() {
this.group[this.index].content.attr('tabindex','0');
this.group[this.index].content.focus();
}
I use NVDA (NonVisual Desktop Access) http://www.nvaccess.org/ for test but Chrome can show focus too.
Thx for your help.