I am interested in reading ONLY the TEXT content of a UIWebView. How do I do this? I found lots of help on the web about reading the HTML content but I want ONLY the Text. Any suggestions?
Thanks
Get the .textContent
or .innerText
of the root node, instead of .innerHTML
.
[web stringByEvaluatingJavaScriptFromString:@"document.documentElement.innerText;"];
(BTW, there is also a private property webView.text
.)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With