Hello,

i try to remove a fat tableborder within an ugly website and replace it 
with fine dotted border. currently i use this:

document.getElementsByTagName("table")[0].border="0";
document.getElementsByTagName("table")[1].border="0";

var cells = document.getElementsByTagName("td"); 
for (var i = 0; i < cells.length; i++) { 
    cells[i].style.borderTop="1px dotted gray";
    cells[i].style.borderLeft="1px dotted gray";
}

This is working, but only always in one frame. (website is oldstyle 
splitted)
What can i do to expand my settings to all td's in all frames?

Thanks,
Hajo

-- 
You received this message because you are subscribed to the Google Groups 
"greasemonkey-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/greasemonkey-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to