Skip to content

Instantly share code, notes, and snippets.

@deholic
Created April 8, 2014 07:01
Show Gist options
  • Save deholic/10098455 to your computer and use it in GitHub Desktop.
Save deholic/10098455 to your computer and use it in GitHub Desktop.
Return play store rank from app identifier
// app identifier를 찾아서 검색한다
$.map($("div.card"), function(n, i) {
if($(n).attr("data-docid").indexOf("APP.IDENTIFIER") != -1)
{
console.log(i, $(n).attr("data-docid"));
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment