1
2
3
4
$.fn.textNodes = function() {
  var ret = [];
  $.each(this[0].childNodes, function() {
...

JavaScript On [jQuery] All descendent tex...

by jed, July 08, 2008 16:27

@jp.stacey

Good catch. I d...

7b72d5a18ab92129692e97a76a153fe0 Talk
1
2
3
4
$.fn.textNodes = function() {
  var ret = [];
  this.each( function() {
...

JavaScript [jQuery] All descendent tex...

by jed, June 29, 2008 07:35, 5 refactorings, tagged with jquery, dom, speed, recursive

This function returns a jQu...

7b72d5a18ab92129692e97a76a153fe0 Talk