I'm trying to use a submit input field that I placed offscreen but the screenreader for Android (Talkback) doesn't let me submit the form when I double tap. I did the same thing for IOS but the IOS screenreader (Voiceover) does register the double tap as a form submit
Does Talkback not let you interact with non-visible objects?
The CSS class I'm using is:
.hidden
{
position:absolute;
left:-10000px;
top:auto;
width:1px;
height:1px;
overflow:hidden;
}
Here is a link to a jsfiddle that is similar to what I'm trying to accomplish: https://jsfiddle.net/uyk0uLx4/
If Talkback doesn't support form submits for offscreen submit buttons what is the recommended way to get offscreen form submissions to work?