Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

object.innerText for IE and FF (See related posts)

   1  
   2  function getInnerText(elt) {
   3  	var _innerText = elt.innerText;
   4  	if (_innerText == undefined) {
   5    		_innerText = elt.innerHTML.replace(/<[^>]+>/g,"");
   6  	}
   7  	return _innerText;
   8  }

Then, replace:
   1  var text = elt.innerText;

by:
   1  var text = getInnerText(elt);

You need to create an account or log in to post comments to this site.


Click here to browse all 5355 code snippets

Related Posts