I\'m having trouble figuring out how to advance VoiceOver to a specific element in Mobile Safari.
So far, I\'ve tried:
Skip
This works on my iphone (moves keyboard focus and makes voiceover speak the content):
<button onclick="document.getElementById('last').focus();">Move focus to bottom heading</button>
<div tabindex="-1" id="last">
<h2>dzoooong</h2>
<p>Heaps of new content</p>
<p>blablalbalblablabl</p>
</div>
It does not work on all elements, e.g. can't move focus directly to the h2.