I have the following simple function which errors in IE6
Expand|Select|Wrap|Line Numbers
- function changecss(id,class){
- document.getElementById(id).className = class;
- }
Expand|Select|Wrap|Line Numbers
- onmouseover="changecss(this.id,'hover');"
can you assist?
Thanks in advance