I am working on a Phonegap project. I have requirement to get content of webpage which opens inside a UIWebView.
It is possible using below code.
NSMutableString *html = [[[sender stringByEvaluatingJavaScriptFromString:@"document.documentElement.outerHTML"] mutableCopy] autorelease];
Now my question is that I have iframe inside the html page. I could not get iframe's content inside "webViewDidFinishLoad" method.
How to get content inside iframe.
Please give me sunshine.


sender? – Popeye Feb 19 at 14:26