I have found a solution for this, thanks to this thread found by TheVillageIdiot. I was able to modify the info given and mix it with a bit of jQuery to create a totally awesome function to select the text in any element, regardless of browser:
function SelectText(element) {
var text = document.getElementById(element);
if ($.browser.msie) {
var range = document.body.createTextRange();
range.moveToElementText(text);
range.select();
} else if ($.browser.mozilla || $.browser.opera) {
var selection = window.getSelection();
var range = document.createRange();
range.selectNodeContents(text);
selection.removeAllRanges();
selection.addRange(range);
} else if ($.browser.safari) {
var selection = window.getSelection();
selection.setBaseAndExtent(text, 0, text, 1);
}
}
EDIT (9/28/11):
It's been a while since this answer was updated, and I've learned a lot as a developer since I asked and answered this question. It has also gotten a lot more attention than I thought it would. I want to provide a better solution than the original one I posted, one that doesn't rely on deprecated jQuery methods, or jQuery at all, for that matter. Could you use jQuery to help you out? Sure, but if you can achieve the same result without jQuery and using feature detection instead of browser sniffing, why wouldn't you? So below is my updated answer:
function selectText(element) {
var doc = document;
var text = doc.getElementById(element);
if (doc.body.createTextRange) { // ms
var range = doc.body.createTextRange();
range.moveToElementText(text);
range.select();
} else if (window.getSelection) { // moz, opera, webkit
var selection = window.getSelection();
var range = doc.createRange();
range.selectNodeContents(text);
selection.removeAllRanges();
selection.addRange(range);
}
}
Here is an updated working demo. For those of you looking for a jQuery plugin, I made one of those too (updated).
UPDATED (1/10/2012) Per Tim Down's suggestion, setBaseAndExtent() is not needed for webkit.