Guest User

Untitled

a guest
Nov 21st, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. jQuery(document).ready(function(){
  2.     $('.tabImg-sm').on("click", function() {
  3.         $('.tabImg-lg').hide();
  4.         $('.tabImgWrap').css('background-image', "url('/sc2/images/ajax-loader.gif')");
  5.     var largeImage = $(this).parent().parent().find('.tabImg-lg');
  6.         var i = $('<img />').attr('src',this.href).load(function() {
  7.             largeImage.attr('src', i.attr('src'));
  8.             $('.tabImgWrap').css('background-image', 'none');
  9.             $('.tabImg-lg').fadeIn();
  10.         });
  11.         return false;
  12.     });
  13. });
Add Comment
Please, Sign In to add comment