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

<!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: 2020-06-23T13:27:01+05:30

905 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements