First off just to be neat, you should have your onchange with a capital 'C'. onChange.
Now that thats done, this:
Code:
e.getElementsByTagName("span")[0].style.minWidthe = "";
Should be:
Code:
e.getElementsByTagName("span")[0].style.min-width = "";
And:
Code:
e.getElementsByTagName("span")[0].style.minWidthe = "31px";
should be:
Code:
e.getElementsByTagName("span")[0].style.min-width = "31px";
This:
Code:
e.getElementsByTagName("span")[0].style.lineHeight = "";
And:
Code:
e.getElementsByTagName("span")[0].style.lineHeight = "16px";
Should be:
Code:
e.getElementsByTagName("span")[0].style.line-height = "";
And:
Code:
e.getElementsByTagName("span")[0].style.line-height = "16px";
This:
Code:
e.getElementsByTagName("span")[0].style.backgroundColor = "";
And:
Code:
e.getElementsByTagName("span")[0].style.backgroundColor = "#FFFFFF";
Should be:
Code:
e.getElementsByTagName("span")[0].style.background-color = "";
And:
Code:
e.getElementsByTagName("span")[0].style.background-color = "#FFFFFF";
Few, that was a lot!
Bookmarks