Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript jQuery – ATTRIBUTE SELECTOR Re: jQuery – ATTRIBUTE SELECTOR

#81993

Hey, I think I was able to get this to work how you wanted. Try this for your click function:


$('button').click(function() {

$('img[alt!=2]').hide();

});