Guest User

Untitled

a guest
Jun 25th, 2018
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5.         <title>jQ</title>
  6.         <script src="jquery.js"></script>
  7.     </head>
  8.     <body>            
  9.        
  10.         <script>
  11.             function galery() {
  12.                 var img = document.getElementById("myImage");
  13.                 if ( img.getAttribute('src') == "./1.jpeg") {
  14.                     img.setAttribute('src', './big.jpg');
  15.                 } else {
  16.                     img.setAttribute('src', './1.jpeg');
  17.                 }    
  18.             }        
  19.         </script>
  20.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  21.         <title>Color</title>
  22.        
  23.     </head>
  24. <body>
  25.     <img src="./1.jpeg" id = "myImage" onclick="galery()">
  26. </body>
  27. </html>
Add Comment
Please, Sign In to add comment