I am having a problem using multiple jQuery commands.
My code:
$('td[background="/images/PBox_Border_Left.gif"]').remove();
$('td[background="/images/PBox_Border_Bottom.gif"]').remove();
$('td[background="/images/PBox_Border_Right.gif"]').remove();
How do i separate these so they all work? Thanks.
If you want to search for all td with backgrounds that start with “/images/PBox_Border_” you can do this:
You could also check to make sure it’s a gif as well:
I just had to use a search like that, so just in case you need the info.