Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1413843

    i missing the role=menuitem in the for

  • items in the mobile menu.
    how can i add it?
#1413848

i think it is not necessary? is ti wright? because the users use a screenreader.

#1413915

Hi,

Thank you for the inquiry.

The following should script should add the role attribute to mobile/burger menu items. Please add it in the functions.php file.

function ava_custom_script() { 
	?>
	<script>
		(function($) {
			$(document).ready(function() {
				$('#top #av-burger-menu-ul li').attr('role', 'menuitems');
			});	
		}(jQuery)); 
	</script>
	<?php
}
add_action('wp_footer', 'ava_custom_script');

Best regards,
Ismael

#1413916

Thanks!

#1413970

Hi,

Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

Best regards,
Rikard

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.