Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name idk
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description Haalt alle filters waarbij 0 staat weg.
- // @author You
- // @match https://tweakers.net/*
- // @grant none
- // @require http://code.jquery.com/jquery-3.3.1.min.js
- // ==/UserScript==
- (function() {
- 'use strict';
- $( "span" ).each(function( index ) {
- if($(this).hasClass('facetCount')) {
- if($(this).text().indexOf('0') >= 0){
- $(this).parent().remove();
- }
- }
- });
- })();
Advertisement
Add Comment
Please, Sign In to add comment