| 1. |
What Is An Html5 Web Worker? |
|
Answer» Normally if some script is executing in an HTML page, the page remains UNRESPONSIVE until the SCRIPTS execution stops. But an HTML5 web worker is a script (i.e. JAVASCRIPT) that keeps executing in background. At the same time user can interact with the page and will not feel any performance degradation.HTML5 Web Worker HTML5 web worker normally exists in external files and used for long-running CPU intensive tasks but WITHOUT affecting the User INTERFACE or other scripts. Normally if some script is executing in an HTML page, the page remains unresponsive until the scripts execution stops. But an HTML5 web worker is a script (i.e. JavaScript) that keeps executing in background. At the same time user can interact with the page and will not feel any performance degradation.HTML5 Web Worker HTML5 web worker normally exists in external files and used for long-running CPU intensive tasks but without affecting the User Interface or other scripts. |
|