thenitesharya

OnOff Light

Apr 28th, 2020
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.56 KB | None | 0 0
  1. <html>
  2.   <body>
  3.     <img id="testimg" src="https://www.w3schools.com/js/pic_bulboff.gif" />
  4.  
  5.       <button onclick="lightonfunction();">Light On</button>
  6.      
  7.       <button onclick="lightofffunction();">Light Off</button>
  8.  
  9.  
  10.  
  11.     <script>
  12.       function lightonfunction(){
  13.         document.getElementById('testimg').src = "https://www.w3schools.com/js/pic_bulbon.gif";
  14.       }
  15.       function lightofffunction(){
  16.         document.getElementById('testimg').src = "https://www.w3schools.com/js/pic_bulboff.gif";
  17.       }
  18.      
  19.     </script>
  20.   </body>
  21. </html>
Add Comment
Please, Sign In to add comment