InterviewSolution
Saved Bookmarks
| 1. |
What is a DOM in jQuery? How can we make sure that DOM is ready? |
|
Answer» DOM is “DOCUMENT OBJECT Model” which is treemap of all HTML elements in web form LOADED by the browser. We can use The .ready() method provides a way to run a JavaScript code as SOON as the page's Document Object Model (DOM) becomes safe to manipulate. |
|