यह IE4 दस्तावेज़ ऑब्जेक्ट मॉडल (DOM) Microsoft के Internet Explorer ब्राउज़र के संस्करण 4 में प्रस्तुत किया गया है। IE 5 और बाद के संस्करणों में सबसे बुनियादी W3C DOM सुविधाओं के लिए समर्थन शामिल है।
उदाहरण
IE4 DOM विधि का उपयोग करके दस्तावेज़ गुणों तक पहुँचने के लिए, निम्नलिखित कोड को चलाने का प्रयास करें -
<html> <head> <title> Document Title </title> <script> <!-- function myFunc() { var ret = document.all["heading"]; alert("Document Heading : " + ret.innerHTML ); var ret = document.all.tags("P");; alert("First Paragraph : " + ret[0].innerHTML); } //--> </script> </head> <body> <h1 id = "heading">This is main title</h1> <p>Click the following to see the result:</p> <form id="form1" name = "FirstForm"> <input type = "button" value = "Click Me" onclick = "myFunc();" /> <input type = "button" value = "Cancel"> </form> <form d = "form2" name = "SecondForm"> <input type="button" value="Don't ClickMe"/> </form> </body> </html>