hi all,
so gehts bei ie / NN
document.testlayer.document.write NN
testlayer.innerHTML IE
wer weiss wie ich im nn6 einen relativ pos. layer beschreibe?
thanx…
hi all,
so gehts bei ie / NN
document.testlayer.document.write NN
testlayer.innerHTML IE
wer weiss wie ich im nn6 einen relativ pos. layer beschreibe?
thanx…
jetzt
also so gehts:
document.getElementById(„testlayer“).innerHTML=‚inhalt‘
erklärung
The innerHTML property of elements as found in IE is not a feature of the W3C DOM. The contents of an element can be set by using methods of the W3C DOM Level 1. To assure the widest interoperability of code, Netscape recommends as a matter of standard policy that developers base their code on web standards rather than proprietary extensions whenever possible. However, in response to requests from web developers, Netscape has added support for the innerHTML DOM extension to Mozilla and Netscape 6 builds after 19 May 2000 (Mozilla M16 and later, Netscape 6 PR2 and later). Developers who wish are welcome to use innerHTML, but they should be aware that innerHTML is not part of any standard and therefore code that uses it will be specific to IE4 and later, Netscape 6 PR2 and later, and browsers based on Mozilla and the Gecko layout engine.