DOM version of insertAdjacentHTML??

admin

Administrator
Staff member
This, IE6 specific, property will create a <DIV> but it will not work for NS7.

document.body.insertAdjacentHTML('BeforeEnd','<div id="name"></div>');

Is there a more DOM compliant property or, at least a property that works in NS7 (not document.write, please!)
 
Back
Top