Skip to main content

Posts

Showing posts with the label document

What is DOM for HTML

We all knows that HTML runs on web browser or in client side.But you all may arise a question in your head that how it works on web browser. Well that what I am gonna tailing about right now.Take a Seat .      When a HTML program runs in web browser,it creates as a tree structure what is together called DOM . DOM is stands for Document Object Model .Where,                 DOCUMENT : a HTML page                 OBJECT : Object indicates all elements and attributes of                                    a HTML page                 MODEL : it indicates tree structure So , when an HTML page runs on browser it creates a DOM structure.   But why we should study DOM at least the basic one -- Well DOM helps us a lot. Basically DOM is a W3 Standard ...