I used:
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
to stop ios from auto-zooming in to a input field, but it's still centering the input field in the middle of the page. How do I fix this? I also tried using:
function moveBack() {
var middle = window.innerWidth/4;
window.scrollTo(middle,0);
}
onclick of the input field, but it's also not working. What am I doing wrong?