Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-type" content="text/html; charset=utf-8">
  5. <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
  6. <title>M</title>
  7. <script type="text/javascript">
  8. $(document).ready(function(){
  9. $('#peshka').bind("click",function(){
  10. if($('#peshka').val() == 'Turn it on'){
  11. $('#img').attr('src','img/OnLamp.png');
  12. $('#peshka').attr('value','Turn it off');
  13. }
  14. else {
  15. $('#img').attr('src','img/OffLamp.ico');
  16. $('#peshka').attr('value','Turn it on');
  17. }
  18. });
  19. });
  20. </script>
  21.  
  22. </head>
  23. <body>
  24. <p><img src="img/OffLamp.ico" id="img" width="90px" height="90px"></p>
  25. <input type="button" id="peshka" value="Turn it on">
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement