Created
September 8, 2010 23:31
-
-
Save wchristian/571054 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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