Public · Protected · Private
javascript innerText works in IE, not in Firefox
Type: Public  |  Created: 2012-04-18  |  Frozen: Yes
« Previous Public Blog Next Public Blog »
Comments
  • you want to use textContent to fallback if (v1.innerText != null) v1.innerText = newvalue; // for IE else v1.textContent = newvalue; // for firefox
    2012-04-18 06:59
This blog is frozen. No new comments or edits allowed.