Skip to content

Instantly share code, notes, and snippets.

@oneeyedman
Created February 27, 2019 13:41
Show Gist options
  • Save oneeyedman/8d130a0786211e5f69d81d1a17971519 to your computer and use it in GitHub Desktop.
Save oneeyedman/8d130a0786211e5f69d81d1a17971519 to your computer and use it in GitHub Desktop.
De la lista de gente a la que sigues, te oculta solo a los que te siguen
const $following = $('.js-stream-item');
$following.each(function (index, element) {const $this = $(element);if ($this.find('.FollowStatus').length) {$this.parent().hide();}});
// Totalidad de a los que sigues
$('.js-stream-item').length
// Totalidad que tb te siguen
$('.FollowStatus').length
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment