I have a issue, which I am thinking might not be that difficult.
How would I go about dynamically adding the <span> tags as innerHTML (and consequently replacing what is currently in each cell) before the visibility changes.
Seems to be I would first have to collect all of the nodeValues first, then loop through each cell and add an innerHTML of essentially this: '<span>' + nodeValues[i] + <'\span>
Now, I am aware that this is not proper syntax, I am merely illustrating a point. But is this logical and possible?
Mike
How would I go about dynamically adding the <span> tags as innerHTML (and consequently replacing what is currently in each cell) before the visibility changes.
Seems to be I would first have to collect all of the nodeValues first, then loop through each cell and add an innerHTML of essentially this: '<span>' + nodeValues[i] + <'\span>
Now, I am aware that this is not proper syntax, I am merely illustrating a point. But is this logical and possible?
Mike
Comment