Hũ hộp khay

Hiển thị tất cả 7 kết quả

jQuery(document).ready(function($){ /* BIẾN NÚT ĐỌC TIẾP THÀNH NÚT MỞ POPUP */ $('.product-small .button').each(function(){ $(this).attr('href','#'); $(this).attr('data-popup','1658'); $(this).addClass('pum-trigger'); }); /* CLICK -> MỞ POPUP + LẤY TÊN SẢN PHẨM */ $(document).on('click', '.product-small .button', function(e){ e.preventDefault(); if (typeof PUM !== 'undefined') { PUM.open(1658); } var productName = $(this).closest('.product-small').find('.name').text(); if(productName){ setTimeout(function(){ $('input[name="your-product"]').val(productName); }, 300); } }); });