I am looking how to get \'one\' and \'park\' string value (which is image_map coordinates clickable spot on UIwebview\'s) onclick from HTML to iPHone native obj-c. I have pu
I am not sure what exactly you mean by "fetch from HTML". The most likely solution will be to use UIWebView
javascript method: -(NSString*)stringByEvaluatingJavaScriptFromString:
If you want to get the innerHTML
from the tag with id 'test':
NSString *innerHTML = [aWebview stringByEvaluatingJavaScriptFromString:@"document.getElementById('test').innerHTML"];