Skip to content

Instantly share code, notes, and snippets.

@wchristian
Created September 8, 2010 23:31
Show Gist options
  • Save wchristian/571054 to your computer and use it in GitHub Desktop.
Save wchristian/571054 to your computer and use it in GitHub Desktop.
function find_thumb_link_containers () {
var post_link = "a[href*='/post/view/']";
var has_thumb_img = ":has(img[src*='/thumb/'])";
var list = $( post_link + has_thumb_img ).parent();
return list;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment