views:

110

answers:

2

Would some please send me the link for any articles , which explains , how DOM is constructed in the browser after the response is received from server

+3  A: 

Read up on Trident, Gecko and Webkit - two very popular layout engines.

Jonathan Sampson
And Gecko, since he asked about FF: http://en.wikipedia.org/wiki/Gecko_(layout_engine)
T.J. Crowder
A: 

Dave Hyatt, who used to work on Gecko (used by Firefox and others) at Mozilla and now works on WebKit (used by Safari, Chrome and others) has an old blog post explaining some of the complexities of this process.

He has also written in more depth about the rendering process in a series of five articles; the first one mentions some aspects of DOM parsing, but all five are great reading if you're curious about how a browser actually works.

NickFitz