heihachi88
7/21/2014 - 6:07 PM

Hide all links with integer text like 103:115

Hide all links with integer text like 103:115

(function($) {

$('a').filter(function() {
    var $text = $(this).text();
    return $text.match(/^\d{1,3}:\d{1,3}/);
}).css({'display': 'none'});

})(jQuery);