Bear Bibeault wrote:
Arjun Reddy wrote:I read that almost everything we do when using jQuery reads or manipulates the document object model (DOM).
jQuery makes it easy to manipulate the DOM, but only if that's your intent. There're many calls that do not touch the DOM.
Does that mean, the elements in the HTML page or XML page are represented in the form of objects in DOM?
Yes. The DOM is the in-memory representation of the elements in the document.
Thanks for answering all the questions Bibeault
I have 2 more questions on this concept
1). I believe DOM and DOM parser are not the same. Correct?
2). DOM is an in Memory representation of HTML or XML documents right? What's the memory here? database? Sorry, I kind of always get confused with the in-memory thing.