Building a site with the main navigation using jQuery Mobile listview which works fine on the browsers (e.g. mobile safari) until voiceover etc is enabled whereupon the navigation is disabled because jQuery mobile adds in an aria-hidden="true"
Is there any way to stop jquery mobile adding this or a better way to allow such users to navigate my site?
example current code:
<ul data-role="listview" data-theme="f">
<li><a href="page1.html" role="link"><img src="image1.gif" alt="Test Image" />
<h3>Heading</h3><p>Description</p></a></li>
</ul>
jQuery mobile adds:
<div class="ui-btn-inner ui-li" aria-hidden="true">
inside the <li> which I think is the cause of the problem here.