Нашел такое вот счастье на одном сайте Нет бы добавить общий класс или через запятую указать селекторы, но нет вместо этого пожалуйста:
1 2 3 4 5 6 7 8 9 |
$('#fade').fadeOut() $('#popuprel1').fadeOut() $('#popuprel2').fadeOut() $('#popuprel3').fadeOut() $('#popuprel4').fadeOut() $('#popuprel5').fadeOut() $('#popuprel6').fadeOut() $(".popupbox1").fadeOut() return false; |
Как найти элемент в jQuery? Использовать множество раз Parent 😘
1 2 3 4 5 6 7 8 9 10 11 12 |
$('.block2-btn-addcart').each(function(){ var nameProduct = $(this).parent().parent().parent().find('.block2-name').html(); $(this).on('click', function(){ swal(nameProduct, "is added to cart !", "success"); }); }); $('.block2-btn-addwishlist').each(function(){ var nameProduct = $(this).parent().parent().parent().find('.block2-name').html(); $(this).on('click', function(){ swal(nameProduct, "is added to wishlist !", "success"); }); }); |