यह IE4 दस्तावेज़ ऑब्जेक्ट मॉडल (DOM) Microsoft के Internet Explorer ब्राउज़र के संस्करण 4 में प्रस्तुत किया गया है। IE 5 और बाद के संस्करणों में सबसे बुनियादी W3C DOM सुविधाओं के लिए समर्थन शामिल है।
उदाहरण
W3C DOM पद्धति का उपयोग करके दस्तावेज़ गुणों तक पहुँचने के लिए, आप निम्न कोड को चलाने का प्रयास कर सकते हैं -
<html> <head> <title> Document Title </title> <script type="text/javascript"> <!-- function myFunc() { var ret = document.getElementsByTagName("title"); alert("Document Title : " + ret[0].text ); var ret = document.getElementById("heading"); alert(ret.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>