- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{ if (navigationType == UIWebViewNavigationTypeLinkClicked) { //[[UIApplication sharedApplication] openURL:request.URL]; // Return false to indicate to the UIWebView to not navigate to the linked target return FALSE; } return YES; }