I am sending the following string to UIWebView:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
<img src="mysrc"></img>
</html>
However, when I read it with:
[templateWebView stringByEvaluatingJavaScriptFromString:@"document.documentElement.outerHTML"]
The result is:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
<img src="mysrc">
</html>
With no end tag to </img>
How can I make UIWebView not to change the HTML tags?
<img src="mysrc">, not<img src="mysrc"/>(with a slash)? – dasblinkenlight Jan 2 at 17:12