Reputation: 68760
I need to find (and hide) all links with images (.jpg, .png, .gif) in href as they're causing my wordpress excerpts to break.
Many thanks.
Upvotes: 3
Views: 4583
Reputation: 108520
$('a').filter(function() {
return $(this).attr('href').match(/\.(jpg|png|gif)/i);
}).hide();
Upvotes: 13