Guest User

Untitled

a guest
Apr 28th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. // ==UserScript==
  2. // @name idk
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Haalt alle filters waarbij 0 staat weg.
  6. // @author You
  7. // @match https://tweakers.net/*
  8. // @grant none
  9. // @require http://code.jquery.com/jquery-3.3.1.min.js
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. $( "span" ).each(function( index ) {
  15. if($(this).hasClass('facetCount')) {
  16. if($(this).text().indexOf('0') >= 0){
  17. $(this).parent().remove();
  18. }
  19. }
  20. });
  21. })();
Advertisement
Add Comment
Please, Sign In to add comment