-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not working properly With Wordpress Avada Theme #46
Comments
@learner0333 It seems that the Fusion Menu used within that theme may conflict with the structure of the accessible mega menu. Adding positive integer tab indexes shouldn't be necessary, and it seems that you are adding them to the |
Note:
You may want to read this about better support for screen readers. On March 25 this was merged with the Master. Explanation of changes by author: The use of aria-haspopup on the toggle links is an invalid use of ARIA, because the aria-haspopup attribute is specifically dedicated within the Accessibility API to indicate that there is an attached menu. Since the content panels include both static textual content and links, it can't be accurately described as a menu construct. Screen readers such as NVDA for instance will announce "submenu" when encountering this for instance, which is confusing when a traditional menu doesn't actually open when activated. This issue is more fully described in the W3C bug at The use of role="group" here to associate grouped content panels is an invalid use of ARIA, because the group role has only a few valid uses including the association of sub-tree structures within an ARIA role="tree" control, but not much else. Also, when the panels are dynamically rendered, aria-labelledby is used to associate the grouped panel name with the triggering link, none of which works within role="group". Additionally, since the group role isn't treated as a region, none of the screen reader commands for detecting and navigating grouped region content are available, such as conveying the beginning and ending boundaries of the content panel, what the name of that panel is via aria-labelledby, nor the ability to quickly jump to and past the panel using the R and Shift+R key commands in JAWS for example. By changing the role to "region" instead, all of these features suddenly become available, conveying the panel as an explicitly named region that includes beginning and ending boundaries, plus the ability to quickly navigate to and from the panel using available hotkeys for jumping between regions. Confirmed using JAWS and NVDA in IE and FF. The dual functionality of the toggle links is still an accessibility issue, because it can't do both, expand a hidden section and also navigate to another page when activated, because both functionalities can't be conveyed to non-sighted screen reader users at the same time. |
I didn't understand, How to fix the issue . I have already modified the Menu structure as required by the Accessible mega menu plugin. |
Update the
|
Not working in Firefox in MAC after replacing this. |
Commented on Firefox Mac here #68 |
I have updated menu structure as per "http://terrillthompson.com/tests/menus/accessible-mega-menu/test.html"
<script src=""></script>Javascript code is as follows:
I have tried without passing parameters as well. It will not work at all. After that i have added tabedindex on li element and it starts working partially.
URL : http://accjcorg.staging.wpengine.com/
After adding tabindex issues are as follows:
1 - I need to press down keys two times to move from one sub-menu item to other
2 - Main navigation movement is not working with arrow keys as well
Please guide me abut it.
The text was updated successfully, but these errors were encountered: