Guest User

Untitled

a guest
Apr 21st, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.52 KB | None | 0 0
  1. <table>
  2.     <tr>
  3.         <td id="3">
  4.             <a href="#" class="thumb">
  5.                 <img class="thumbimg" src="images/image1.png" alt="image1.png" />
  6.             </a>
  7.         </td>
  8.     </tr>
  9. </table>
  10. <script type="text/javascript">
  11.             $('.thumbimg').click(function () {
  12.                 imgID = $(this).closest('td').attr('id');
  13.  
  14.                 var newSrc = imgPath + $(this).attr('alt');
  15.                 mainImage.attr('src', newSrc);
  16.  
  17.                 $('#gallery').attr('width', mainImage.attr('width') + '15px');
  18.             });
  19. </script>
Add Comment
Please, Sign In to add comment