Skip to content

Instantly share code, notes, and snippets.

@caglarorhan
Created September 2, 2017 01:05
Show Gist options
  • Save caglarorhan/183849f5af80d4b7800056f04f763fdd to your computer and use it in GitHub Desktop.
Save caglarorhan/183849f5af80d4b7800056f04f763fdd to your computer and use it in GitHub Desktop.
Google ISBN Search Result Extractor
var liste=[];
var isbnListesi =document.getElementsByClassName('title');
for(xcv=0; xcv<isbnListesi.length-1; xcv++){
liste.push(isbnListesi[xcv].innerHTML);
};
console.log(liste);
@caglarorhan
Copy link
Author

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);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment