![]() |
|
|
+ Search |
![]()
|
Feb 20th, 2003 07:14
Klaus Bolwin, Premkumar AC,
In NS6+ you can do the following:
all = document.getElementsByTagName("*");
then you can access the elements properties by e.g.:
value = all[i].style.color;
all[j].style.color = "red";
Of cours, you cann also use real tag names e.g. "div" insted of the
wildcard "*".