Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

HTML Web Workers

What is a Web Worker?

When executing scripts in an HTML page, the page may become unresponsive until the script finishes. A web worker runs JavaScript in the background, independently of other scripts, keeping the page responsive while it operates. You can continue interacting with the page, such as clicking or selecting items, while the web worker runs.

Browser Support

The numbers in the table indicate the earliest browser version that fully supports Web Workers.

webworker

Check Web Worker Support

Before creating a web worker, verify if the user’s browser supports it:

if (typeof(Worker) !== “undefined”) {
  // Yes! Web worker support!
  // Some code…..
} else {
  // Sorry! No Web Worker support..
}

Create a Web Worker File

Now, let’s create our web worker in an external JavaScript file. The script, stored in “demo_workers.js”, performs counting operations.

var i = 0;

function timedCount() {
  i = i + 1;
  postMessage(i);
  setTimeout(“timedCount()”,500);
}

timedCount();