Search Results


6 matches found for 'DOM'

HTML and CSS Concepts

... It was created by Tim Berners and it represents a document in the world wide web. DOM The DOM is an interface that treats a HTML document as a tree structure wherein each node is an object representing a part of the element.


CSR vs. SSR

Introduction 10 years ago, Amazon found that every 100ms of latency cost them 1% in sales. Google found an extra .5 seconds in search page generation time dropped traffic by 20%. A broker could lose $4 million in revenues per millisecond if their electronic trading platform is 5 milliseconds behind the competition.


Web Development 101

... easy way. React stands out as a MVC View library in a couple of ways: It makes use of Virtual DOM. This is an in-memory cache that computes and renders based on a diffing algorithm.


Javascript Essentials

... or non-responsive feeling. Event Delegation Event delegation is a way of setting a DOM element with an event listener, and implicitly passing down that event listener to all of its children.


Asynchrony vs. Multithreading

... (Web workers can sort of simulate additional threads, but they don't have access to the DOM). This means that it cannot spin up another thread to keep track of the Promises and populate it.


Escape from the Strings

... reserved special characters for the browsers to parse and interpret these values to render the DOM properly. Thus, if we want to render literal tag brackets, then we need to escape the characters.