Open In App

HTML DOM queueMicrotask() Method

Last Updated : 29 Jul, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The queueMicrotask() method, queues a microtask to be executed at a safe time prior to control returning to the browser’s event loop. The microtask is a short function that runs after the current task has completed its work and when there is no other code waiting to be run before control of the execution context is returned to the browser’s event loop. This lets your code run without interfering with any other, potentially higher priority, code that is pending.

Syntax:

self.queueMicrotask(function);

Parameters:

  • function: A function to be executed when the browser engine determines it is safe to call your code.

Return value: undefined.

Example: In this example, we will execute our function using this method.

HTML




<!DOCTYPE HTML>
<html>
  
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksforGeeks
    </h1>
  
    <p>
        HTML | DOM queueMicroTask() method
    </p>
      
    <button onclick="Geeks()">
        Click Here
    </button>
      
    <p id="a"></p>
      
    <script>
        var a = document.getElementById("a");
        function Geeks() {
            self.queueMicrotask(() => {
                a.innerHTML = "This is called "
                + "using queueMicrotask() method";
            })
        
    </script>
</body>
  
</html>


Output:

Before Clicking the Button:

After Clicking the Button:

Supported Browsers:

  • Google Chrome
  • Edge
  • Firefox
  • Safari
  • Opera


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads