CSS Javascript Rollover
CSS Javascript Rollover
Out of context: Reply #5
- Started
- Last post
- 5 Responses
- dessalles0
i think you'd have to give each cell a unique id. something like 'cell32' of row 3 column 2. then you could use document.getElementById(id) to access each element - where id is a string that corresponds to the name of the cell you wish to edit.
example:
id = "cell32";
document.getElementById(id).styl... = "#ABCDEF";