$(function() { if ( $('section.section-accesories-child').length == 0 ) { $('.item .image').hover(function() { $(this).parent('.item').addClass('active'); }, function() { $(this).parent('.item').removeClass('active'); }); $('.item .title').hover(function() { $(this).parent('.item').addClass('active'); },function() { $(this).parent('.item').removeClass('active'); }); $('.item > .image').click(function() { var url = $(this).find('a:first').attr('href'); //console.log(url); if ( typeof url != 'undefined') { window.location.href = url; }; }); } });