
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What are the document properties of IE4 DOM method?
This IE4 document object model (DOM) introduced in Version 4 of Microsoft's Internet Explorer browser. IE 5 and later versions include support for most basic W3C DOM features.
Example
The following are the document properties of IE4 DOM method −
Sr.No | Property & Description |
---|---|
1 | activeElement A read-only property that refers to the input element that is currently active (i.e., has the input focus). Ex − document.activeElement |
2 | all[ ] An array of all Element objects within the document. This array may be indexed numerically to access elements in source order, or it may be indexed by element id or name. Ex − document.all[ ] |
3 | charset The character set of the document. Ex − document.charset |
4 | children[ ] An array that contains the HTML elements that are the direct children of the document. Note that this is different from the all [ ] array that contains all the elements in the document, regardless of their position in the containment hierarchy. Ex − document.children[ ] |
5 | defaultCharset The default character set of the document. Ex − document.defaultCharset |
6 | expando This property, if set to false, prevents client-side objects from being expanded. Ex − document.expando |
- Related Questions & Answers
- How to write a script to access document properties using IE4 DOM method?
- What are the document properties which can be accessed using Legacy DOM?
- How to access document properties using W3C DOM method?
- How can I access document properties using Legacy DOM method in JavaScript?
- What are the document methods supported by Legacy DOM?
- How to get the list of document properties which can be accessed using W3C DOM?
- What are the properties of MySQL user variables?
- What are the closure properties of Regular languages?
- What are the Properties of Data Encryption Standard?
- What are the properties of window.screen object in JavaScript?
- What are the properties of array class in C#?
- What are the basic properties of products in TOC?
- What are the properties of Regular expressions in TOC?
- What are the properties of a good Heating Element?
- What are accessors of properties in C#?
Advertisements