Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Could you provide all code for this method this is running in? I think I know what it is, but what is sender? – Popeye Feb 19 at 14:26

2 Answers

This is my sample code :

- (void)webViewDidFinishLoad:(UIWebView *)sender 
{
NSMutableString *html = [[[sender stringByEvaluatingJavaScriptFromString:@"document.documentElement.outerHTML"] mutableCopy]  autorelease];
}

- (BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType {
  return YES;   
}

- (void)loadAddress:(id)sender event:(UIEvent *)event
{
NSString* urlString = self.addressField.text;
NSURL* url = [NSURL URLWithString:urlString];
NSURLRequest* request = [NSURLRequest requestWithURL:url];
[webView loadRequest:request];
}    
share|improve this answer

I got the answer. i need to add this string to

NSString jsString = @"$('iframe').ready(function() {
              var document1 = window.document.getElementsByTagName('iframe')[0].contentWindow.document.getElementsByTagName('input');
             }";

[webView stringByEvaluatingJavaScriptFromString:jsString];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.