Created
April 8, 2014 07:01
-
-
Save deholic/10098455 to your computer and use it in GitHub Desktop.
Return play store rank from app identifier
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
// 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