Guest User

Untitled

a guest
Nov 23rd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <h2>Light ON or OFF by Abhijit</h2>
  6.  
  7. <p>Light Bulb ON or OFF using JavaScript</p>
  8.  
  9. <button onclick="f1()">Turn on the light</button>
  10.  
  11. <img id="img" src="2.png" style="width:300px">
  12.  
  13. <button onclick="f2()">Turn off the light</button>
  14.  
  15. <script>
  16. function f1()
  17. {
  18. var obj=document.getElementById('img');
  19. obj.src='1.png';
  20. }
  21. function f2()
  22. {
  23. var obj1=document.getElementById('img');
  24. obj1.src='2.png';
  25. }
  26. </script>
  27.  
  28. </body>
  29. </html>
Add Comment
Please, Sign In to add comment