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);