I have some JavaScript code that works in IE containing the following:
myElement.innerText = \"foo\";
However, it seems that the \'innerTex
As in 2016 from Firefox v45, innerText
works on firefox, take a look at its support: http://caniuse.com/#search=innerText
If you want it to work on previous versions of Firefox, you can use textContent
, which has better support on Firefox but worse on older IE versions: http://caniuse.com/#search=textContent