up vote 37 down vote favorite
13
share [g+] share [fb]

I have some JavaScript code that works in IE containing the following:

myElement.innerText = "foo";

However, it seems that the 'innerText' property does not work in Firefox. Is there some Firefox equivalent? Or is there a more generic, cross browser property that can be used?

link|improve this question

12  
This is where libraries like jQuery make life easier as they take care of cross-browser inconsistencies like this by enabling you to use a standard framework. – Dan Diplo Aug 31 '09 at 22:02
feedback

8 Answers

up vote 29 down vote accepted

Firefox uses the W3C-compliant textContent property.

I'd guess Safari and Opera also support this property.

link|improve this answer
1  
feedback

Firefox uses W3C standard Node::textContent, but its behavior differs "slightly" from that of MSHTML's proprietary innerText (copied by Opera as well, some time ago, among dozens of other MSHTML features).

First of all, textContent whitespace representation is different from innerText one. Second, and more importantly, textContent includes all of SCRIPT tag contents, whereas innerText doesn't.

Just to make things more entertaining, Opera - besides implementing standard textContent - decided to also add MSHTML's innerText but changed it to act as textContent - i.e. including SCRIPT contents (in fact, textContent and innerText in Opera seem to produce identical results, probably being just aliased to each other).

textContent is part of Node interface, whereas innerText is part of HTMLElement. This, for example, means that you can "retrieve" textContent but not innerText from text nodes:

var el = document.createElement('p');
var textNode = document.createTextNode('x');

el.textContent; // ""
el.innerText; // ""

textNode.textContent; // "x"
textNode.innerText; // undefined

Finally, Safari 2.x also has buggy innerText implementation. In Safari, innerText functions properly only if an element is neither hidden (via style.display == "none") nor orphaned from the document. Otherwise, innerText results in an empty string.

I was playing with textContent abstraction (to work around these deficiencies), but it turned out to be rather complex.

You best bet is to first define your exact requirements and follow from there. It is often possible to simply strip tags off of innerHTML of an element, rather than deal with all of the possible textContent/innerText deviations.

Another possibility, of course, is to walk the DOM tree and collect text nodes recursively.

link|improve this answer
7  
Chrome supports innerText as well, so it seems like Firefox is the only major browser to NOT support it. And IE is the only browser to NOT support textContent. – mike nelson Feb 3 '10 at 5:02
@mike - But it seems it's 60x slower to use innerText in Chrome. jsperf.com/text-content/3 – galambalazs Jan 18 '11 at 12:35
1  
textContent is now supported in IE9+, but Firefox still doesn't support innerText (although they did add IE-introduced outerHTML just few days ago). – kangax Nov 17 '11 at 22:20
feedback

If you only need to set text content and not retrieve, here's a trivial DOM version you can use on any browser; it doesn't require either the IE innerText extension or the DOM Level 3 Core textContent property.

function setTextContent(element, text) {
    while (element.firstChild!==null)
        element.removeChild(element.firstChild); // remove all existing content
    element.appendChild(document.createTextNode(text));
}
link|improve this answer
2  
This is the answer. What's wrong with everyone? – Tim Down May 19 '10 at 16:07
I agree to Tim, this is the best answer. – Jhonny Everson Mar 30 '11 at 1:53
Unless JavaScript has a "!==" operator, I think that operator in the second line should just be "!=". – RexE Oct 23 '11 at 20:34
3  
@RexE: JavaScript does have a !== operator, the inverse of ===. The type-sensitive comparison used by ===/!== is usually preferable to the loose comparators ==/!=. – bobince Oct 23 '11 at 20:43
feedback

if you are having cross browser issues I would go ahead and use jquery. It supports many, many browsers.

Example:

 $(document).ready(function() {
      // do stuff when DOM is ready
      $('myElement').text("Foo");
 });

This works for all browsers. This way you don't have to worry about if it will work in a certain browser or not.

link|improve this answer
feedback

As per Prakash K's answer FireFox does not support the innerText property. So as is the recommended practise you can simply test whether the user agent supports this property and act accordingly as below:

function changeText(elem,changeVal){
   if(elem.textContent){
      elem.textContent = changeVal;
   }else{
      elem.innerText = changeVal;
   }
}
link|improve this answer
4  
This works except in the case if the text value is initially set to an empty string ("") then it fails in Firefox. It seems that the code also needs to check for that condition along with whether the 'textContent' property is supported or not. – Ray Vega Aug 31 '09 at 22:43
4  
You need to use if (typeof(elem.textContent) != "undefined") then to solve the empty-string problem. – MiffTheFox Aug 31 '09 at 23:21
Very intelligent solution imo! – Sven Jan 26 at 13:59
feedback

This has been my experience with innerText, textContent, innerHTML, and value:

// elem.innerText = changeVal;  // works on ie but not on ff or ch
// elem.setAttribute("innerText", changeVal); // works on ie but not ff or ch
// elem.textContent = changeVal;  // works on ie but not ff or ch
// elem.setAttribute("textContent", changeVal);  // does not work on ie ff or ch
// elem.innerHTML = changeVal;  // ie causes error - doesn't work in ff or ch
// elem.setAttribute("innerHTML", changeVal); //ie causes error doesn't work in ff or ch
   elem.value = changeVal; // works in ie and ff -- see note 2 on ch
// elem.setAttribute("value", changeVal); // ie works; see note 1 on ff and note 2 on ch

ie = internet explorer, ff = firefox, ch = google chrome. note 1: ff works until after value is deleted with backspace - see note by Ray Vega above. note 2: works somewhat in chrome - after update it is unchanged then you click away and click back into the field and the value appears. The best of the lot is elem.value = changeVal; which I did not comment out above.

link|improve this answer
is it just me ? or do abosolutly ignore the OP question ? he asked for innerText/textContent, and you are talking about inputs mostly. – Dementic Jan 4 at 11:16
feedback

Add this

function htmlEncode(str) {
    var elm = document.createElement("div");
    var txtNode = document.createTextNode(str);
    elm.appendChild(txtNode);
    return elm.innerHTML;
}

Then do this, even though it looks silly. It will properly escape everything


myElement.innerHTML = htmlEncode("<silly>foo & foo aren't the same.</silly>");
link|improve this answer
feedback

This should do it

myElement.innerHTML = "foo";
link|improve this answer
4  
That will replace ALL the HTML within the object with the supplied value. – OMG Ponies Aug 31 '09 at 21:23
But still might suit if there is no HTML to take care of. – Alex Polo Aug 21 '10 at 4:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.