$('.img-banner-tracker').each(function(){ var element = this; if (!this.complete) { $(this).load(function(){ if($(this).is(":visible")){ addBannerView($(element).attr('data-banner')); } }); } else { if($(this).is(":visible")){ addBannerView($(element).attr('data-banner')); } } }); $('.img-banner-tracker').parent().click(function(){ if($(this).attr('href') != undefined){ var bannerId = $(this).find('.img-banner-tracker').attr('data-banner'); $.ajax({ url: '/index/add-banner-click', data: {banner: bannerId}, method: 'post', dataType: 'json' }); } }); function addBannerView(bannerId){ $.ajax({ url: '/index/add-banner-view', data: {banner: bannerId}, method: 'post', dataType: 'json' }); }