Created
September 2, 2017 01:05
-
-
Save caglarorhan/183849f5af80d4b7800056f04f763fdd to your computer and use it in GitHub Desktop.
Google ISBN Search Result Extractor
This file contains 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
var liste=[]; | |
var isbnListesi =document.getElementsByClassName('title'); | |
for(xcv=0; xcv<isbnListesi.length-1; xcv++){ | |
liste.push(isbnListesi[xcv].innerHTML); | |
}; | |
console.log(liste); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When you are searching for a book or magazine which has ISBN number, Google brings ISBN numbers related with that book/magazine etc. So you can search by clicking them (their button shape links). But if you need an array or list of these ISBN numbers, you can open console (via developer tools, which has shortcuted by F12) and write down the js code below:
var liste=[];
var isbnListesi =document.getElementsByClassName('title');
for(xcv=0; xcv<isbnListesi.length-1; xcv++){
liste.push(isbnListesi[xcv].innerHTML);
};
console.log(liste);