jQuery( document ).ready(function($) { $(window).on('load', function(){ if($('.product-short-description').length > 0){ var wrap = $('.product-short-description'); var current_height = wrap.height(); var your_height = 300; if(current_height > your_height){ wrap.css('height', your_height+'px'); wrap.append(function(){ return '
'; }); wrap.append(function(){ return ' '; }); $('body').on('click','.devv_readmore_flatsome_more', function(){ wrap.removeAttr('style'); $('body .devv_readmore_flatsome_more').hide(); $('body .devv_readmore_flatsome_less').show(); }); $('body').on('click','.devv_readmore_flatsome_less', function(){ wrap.css('height', your_height+'px'); $('body .devv_readmore_flatsome_less').hide(); $('body .devv_readmore_flatsome_more').show(); }); } } }); jQuery('.item-product-connected').hover(function() { var offset = jQuery(this).offset(); jQuery('.tooptip-pro .price-box strike').fadeIn(200); jQuery('.tra-truoc').fadeOut(200); jQuery('.tooptip-pro h3').text(jQuery(this).attr('title')); if (jQuery(this).attr('giagiam') != '') { jQuery('.tooptip-pro .price-box strong bdi').html(jQuery(this).attr('giagiam') + ''); } else { jQuery('.tooptip-pro .price-box strong bdi').html('Liên hệ'); } if (jQuery(this).attr('gia') != '') { jQuery('.tooptip-pro .price-box strike bdi').html(jQuery(this).attr('gia') + ''); } else { jQuery('.tooptip-pro .price-box strike bdi').html(''); } if (jQuery(this).attr('tratruoc') != '') { jQuery('.tra-truoc').text('Trả trước: ' + jQuery(this).attr('tratruoc')); jQuery('.tra-truoc').fadeIn(200); } else { jQuery('.tra-truoc').fadeOut(200); } jQuery('.tooptip-pro img').attr('src', jQuery(this).attr('image_url')); jQuery('.tooptip-pro').css({ 'top': offset.top, 'left': offset.left + jQuery(this).width() }); console.log(offset.top); jQuery('.tooptip-pro').stop().fadeIn(200); }, function() { jQuery('.tooptip-pro').stop().fadeOut(200); }); });