Skip to content

Instantly share code, notes, and snippets.

@Rukomoynikov
Created September 19, 2017 09:50
Show Gist options
  • Save Rukomoynikov/076aede1c39b0593b295e0d97ec8860b to your computer and use it in GitHub Desktop.
Save Rukomoynikov/076aede1c39b0593b295e0d97ec8860b to your computer and use it in GitHub Desktop.
harb
var list = []
var articles = document.querySelectorAll('.post_preview');
for (var i = 0; i < articles.length; i++) {
var title = articles[i].querySelector('.post__title_link')
var author = articles[i].querySelector('.user-info__nickname')
list.push({
title: title.innerText,
url: title.getAttribute('href'),
author: author.innerText
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment