I have web forms built in Zoho that have text inputs as well as drop down selections. Using the Javascript console in Chrome, I've figured out which commands I need to use to isolate those components. My issue now is this - I want to natively style and implement UITextViews for those text inputs. How can I link text that the user types into those views with text in those areas of input on the webform?
After looking around, I think that this is something along the lines of what I need:
NSString *string = [NSString stringWithFormat:@"document.getElementsByTagName('INPUT')[1].value = %@", textView.text];
[webView stringByEvaluatingJavaScriptFromString:string];
But, this wasn't working. Am I missing something or is this just not doable?