$.fn.textNodes = function() {
var ret = [];
$.each(this[0].childNodes, function() {
...
JavaScript On [jQuery] All descendent tex...
by jed,
July 08, 2008 16:27
$.fn.textNodes = function() {
var ret = [];
$.each(this[0].childNodes, function() {
...
@jp.stacey
Good catch. I d...