Hi I have a website template I can't change since it's server side of a company I'm partnered with, but I want to change this code to remove onload this td background image or change it, whatever works. It needs to be with javascript not jquery.
It has no id or css
<td background="/webfiles/302565/free/b2.gif">
I tried something like this but it doesn't work.
var tabletd = document.getElementsByTagName('td');
if (td.background == 'b2.gif') {
td.background = 'b-2.gif';
}
A million thank you's in advance!
*EDIT: Thanks for the help and code, however although it works in jsfiddle it doesn't work on my site (www.skiptheframe.tk). I have other working replace scripts but this td background one has been a thorn in my side for ages since I have tried many variations to try get it to work.