Skip to content

Instantly share code, notes, and snippets.

@udovichenko
Created November 6, 2016 07:35
Show Gist options
  • Select an option

  • Save udovichenko/42405f8941ca6f8d4c0e2e6145bfb3cf to your computer and use it in GitHub Desktop.

Select an option

Save udovichenko/42405f8941ca6f8d4c0e2e6145bfb3cf to your computer and use it in GitHub Desktop.
Get text of VK post with raiting over N
var n = 700;
var a = document.querySelectorAll('.post_content');
var t = '';
[].forEach.call(a, function(i) {
if (i.querySelector('.post_like_count').textContent > n) {
t += "\n\n" + i.querySelector('.wall_post_text').innerText;
}
});
document.getElementById('public_actions_wrap').innerText = t;
console.log(t);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment