iPhone SDK Auto scrolling UIWebView to a specific position

iphone, uiwebview

Solution

Ok, hate to answer my own question but it was easier then I thought...

[webView stringByEvaluatingJavaScriptFromString:@"window.scrollBy(0,180);"];

Problem

I Have a UIWebView that displays third party web page (not a page I can control) I need a way to scroll the content of the web view to a specific position in that page. Any idea how to implement it? Thanks.

Original source