innerHTML/html() XHTML, XHTML, application/xhtml+xml. ( IE < 9.) text/html, - , , DOM. HTML DOM, , .
, IE innerHTML HTML: attr , . , innerHTML, - . , , , . html() . , , , innerHTML , .
XHTML? , , DOM-.
ETA :
XHTML . , HTML , html(). :
, html(), - , . , <img title="Hello, this is some description. Another sentence."> - , <span> title, .
, , . , jQuery . . findText , :
var element= $('#content')[0];
findText(element, /.*?[.?!]\s+?/g, function(node, match) {
var wrap= document.createElement('span');
node.splitText(match.index+match[0].length);
wrap.appendChild(node.splitText(match.index));
node.parentNode.insertBefore(span, node.nextSibling);
});