I know I can change the contents of, say, a text object dynamically by using JS DOM code such as:
Code: Select all
document.GetByElementId('mytext').value = "some text"I know I can use document.write to output text, however I can't 'write over' text that's already there using this function, as far as I am aware.
What do I do to change plain HTML text content on the screen from one set of text to another without having to refresh the whole screen - is this possible?
Many thanks
Mark