Skip to content

Instantly share code, notes, and snippets.

@tbranyen
Created August 3, 2010 03:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tbranyen/505756 to your computer and use it in GitHub Desktop.
Save tbranyen/505756 to your computer and use it in GitHub Desktop.
if(typeof _selector == "string") {
if(cache[_selector])
return cache[_selector];
window.setTimeout(function() { delete cache[_selector]; }, 0);
cache[_selector] = dom.query(_selector);
return cache[_selector];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment