
Cross Browser insertAdjacentHTML() ??
Anyone know of another way to dynamically insert content without using insertAdjacentHTML(), besides:
var sOldContent = document.id.innerHTML()
document.id.innerHTML = sNewContent + sOldContent;
I can use this but I am dealing with files and the filename information is not persisting past this step. Here is my situation.
<div id="listing">
<div id="child"><input type="file"></div>
</div>
I want to be able to add more files into the listing, while preserving the state(keeping the filename in the file box) of any files already in there. I need to do this without using insertAdjacentHTML because Netscape 6.1 doesn't include that method.
Any help would be nice!
*** Sent via Developersdex http://www.*-*-*.com/ ***
Don't just participate in USENET...get rewarded for it!