How to set the opacity level for an element with JavaScript?


Use the opacity property in JavaScript to set the opacity level. You can try to run the following code to set the opacity level for an element with JavaScript −

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         #box {
            width: 450px;
            background-color: gray;
         }
      </style>
   </head>
   <body>
      <p>Click below to set Opacity.</p>
      <button type="button" onclick="display()">Set Opacity</button>
      <div id="box">
         <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p>
         <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p>
         <p>This is a div. This is a div. This is a div. This is a div. This is a div.</p>
      </div>
      <br>
      <script>
         function display() {
            document.getElementById("box").style.opacity = "0.5";
         }
      </script>
   </body>
</html>

Updated on: 23-Jun-2020

478 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements