Guest User

Untitled

a guest
Dec 10th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <div class="image-1">
  2. <img src="large1.jpg">
  3. </div>
  4.  
  5.  
  6. <div id="thumbs">
  7. <a id="thumb_1" href="large1.jpg" title="1"><img src="small1.jpg" alt="image 1"/></a>
  8. <a id="thumb_2" href="large2.jpg" title="2"><img src="small2.jpg" alt="image 1"/></a>
  9. <a id="thumb_3" href="large3.jpg" title="3"><img src="small3.jpg" alt="image 1"/></a>
  10. </div>
  11.  
  12. ...
  13.  
  14. <div class="image-2">
  15. <img src="large2.jpg">
  16. </div>
  17.  
  18. <div id="thumbs">
  19. <a id="thumb_1" href="another_large1.jpg" title="1"><img src="anout_small1.jpg" alt="image 1"/></a>
  20. <a id="thumb_2" href="another_large2.jpg" title="2"><img src="another_small2.jpg" alt="image 1"/></a>
  21. <a id="thumb_3" href="another_large3.jpg" title="3"><img src="another_small3.jpg" alt="image 1"/></a>
  22. </div>
  23.  
  24. ...
  25.  
  26. $(function() {
  27.  
  28. $(".mouseover a").mouseover(function(){
  29. var src=$(this).attr('href');
  30. var classs=$(this).attr('class');
  31. classs=classs.substr(6);
  32. $('.'+classs).find('img').attr('src',src);
  33.  
  34. })
  35.  
  36. })
Add Comment
Please, Sign In to add comment