I have actually used...
document.getEle mentById('div_1 23').innerHTML += content;
but sometimes a content added goes down & in place of that another content comes.
example- if I add in a div_123 2 contents:
1)abcde - very first time
2)xyz - second time
but sometimes div_123 displays:
xyz
abcde
actually it should be like:
abcde
xyz
Any idea?
document.getEle mentById('div_1 23').innerHTML += content;
but sometimes a content added goes down & in place of that another content comes.
example- if I add in a div_123 2 contents:
1)abcde - very first time
2)xyz - second time
but sometimes div_123 displays:
xyz
abcde
actually it should be like:
abcde
xyz
Any idea?
Comment