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

JavaScript [jQuery] All descendent tex...

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

This function returns a jQu...

7b72d5a18ab92129692e97a76a153fe0 Talk
1
2
3
4
function odump(object, depth, max){
  depth = depth || 0;
  max = max || 2;
...

JavaScript Recursively dump an object

by hubfactor, February 01, 2008 12:40, 2 refactorings, tagged with javascript, dump, recursive

Given an object, iterate th...

Ed9c50a6db8b5e078b5ef84306a8477c Talk
1
2
3
4
require 'find'
excludes = [".svn", "lib", "modules", "feathers"]
exclude_files = []
...

Ruby Crawl a directory and searc...

by Alex Suraci, December 10, 2007 04:04, 1 refactoring, tagged with gettext, php, ruby, recursive

This recursively goes throu...

3802570ec8bc7d7689503ca7bed21862 Talk