I have a simple UIWebView with simple HTML. At the end I place a javascript function:
<script language='javascript' type='text/javascript'>
var x = document.getElementById('SEARCHRESULT');
if (x != null) x.scrollIntoView(true);}
</script>
To force the view to scroll to a region. It doesn't seem to work.
Does the UIWebView not support this simple javascript?