На страницах категорий моего магазина у меня есть список моего товара, и мне нужно изменить положение кнопки списка желаний для каждого товара в списке, поэтому я создаю следующие скрипты jQuery:
jQuery('.product:nth-child(1) .btn').insertBefore('.product:nth-child(1) .wishlist');
jQuery('.product:nth-child(2) .btn').insertBefore('.product:nth-child(2) .wishlist');
jQuery('.product:nth-child(3) .btn').insertBefore('.product:nth-child(3) .wishlist');
jQuery('.product:nth-child(4) .btn').insertBefore('.product:nth-child(4) .wishlist');
jQuery('.product:nth-child(5) .btn').insertBefore('.product:nth-child(5) .wishlist');
jQuery('.product:nth-child(6) .btn').insertBefore('.product:nth-child(6) .wishlist');
jQuery('.product:nth-child(7) .btn').insertBefore('.product:nth-child(7) .wishlist');
jQuery('.product:nth-child(8) .btn').insertBefore('.product:nth-child(8) .wishlist');
jQuery('.product:nth-child(9) .btn').insertBefore('.product:nth-child(9) .wishlist');
jQuery('.product:nth-child(10) .btn').insertBefore('.product:nth-child(10) .wishlist');
and so on...
Я хочу сократить свои сценарии только в одном сценарии или функции, не используя много: nth-child (x).
Как я могу это сделать?
P: S. Я не могу использовать скрипт
jQuery('.product .btn').insertBefore('.product .wishlist');
, потому что каждый элемент .btn go в каждом элементе .product.