Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In a web page i have two select box, after select a value from first select box the second select box if fill by java script or may be Ajex. but in my UIWebView the second select box is not fill. so please help me. this is work well in safari web browser.

- (void)viewDidLoad {
    [super viewDidLoad];

    [myWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:urlStr]]];
}


-(void)webViewDidStartLoad:(UIWebView *) portal {
    [UIApplication sharedApplication].networkActivityIndicatorVisible = YES; 
}

-(void)webViewDidFinishLoad:(UIWebView *) portal{
    [UIApplication sharedApplication].networkActivityIndicatorVisible = NO; 
}


- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
{
    NSString *userInfo = [[error userInfo] objectForKey:NSURLErrorFailingURLPeerTrustErrorKey];
    NSLog(@"Connection failed! Error - %@ %@",[error localizedDescription],userInfo);   

    UIAlertView *alerView = [[UIAlertView alloc] initWithTitle:[error localizedDescription] message:userInfo delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil,nil];
    [alerView show];
    [alerView release]; 
    [UIApplication sharedApplication].networkActivityIndicatorVisible = NO; 
}
share|improve this question
Please post your code in which you are loading content in webView is it using loadHTMLString: method? – Ravin Apr 15 '11 at 8:27
No, i haven't use loadHTMLString: method. please tell me where we use it. – Vinod Apr 15 '11 at 11:27

1 Answer

You should turn on the Debug Console in your mobile safari and look if there java script errors, else you should debug through with alerts.

Turn on Debug Console:

Open Settings -> Safari -> Developer (At the bottom) -> Debug Console on|off

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.