Musings
Public · Protected · Private
javascript innerText works in IE, not in Firefox
-
2012-04-18 06:59you want to use textContent to fallback if (v1.innerText != null) v1.innerText = newvalue; // for IE else v1.textContent = newvalue; // for firefox
This blog is frozen. No new comments or edits allowed.