How to check web browser support in HTML5


You can try to run the following code to detect a web worker feature available in a web browser:

<!DOCTYPE HTML>
<html>
   <head>
      <title>Big for loop</title>
      <script src = "/js/modernizr-1.5.min.js"></script>
      <script>
         function myFunction(){
            if (Modernizr.webworkers) {
               alert("Congratulations!! You have web workers support." );
            } else{
               alert("Sorry!! You do not have web workers support." );
            }
         }
      </script>
   </head>

   <body>
      <button onclick = "myFunction()">Click me</button>
   </body>
</html>

The following is the result:

Updated on: 29-Jan-2020

129 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements