
October 3rd, 2009, 11:15 AM
|
 |
Contributing User
|
|
Join Date: May 2009
Location: Manchester, UK
|
|
So you're doing something like this... ?
Code:
if(xmlhro.readyState == 4) {
div1.innerHTML = xmlhro.responseText;
}
If that's the case, then the innerHTML property actually overwrites anything inside the dom object it is a property of.
|