What would be an approach to select text within span tag when considering browser compatibility? Example, I have:
jQuery().html('<p>Hello world <span>lorem ipsum</span> my good friend!');
I want the lorem ipsum
part to be cursor selected.
I have this code which selects text:
function SelectText(element) {
var doc = document
, text = doc.getElementById(element)
, range, selection
;
if (doc.body.createTextRange) {
range = document.body.createTextRange();
range.moveToElementText(text);
range.select();
} else if (window.getSelection) {
selection = window.getSelection();
range = document.createRange();
range.selectNodeContents(text);
selection.removeAllRanges();
selection.addRange(range);
}
}