jQuery(document).ready(function ($) { $('ul.products.columns-3 li').each(function() { // Get the href value of the link within this list item var hrefValue = $(this).find('a').attr('href'); console.log('hrefValue', hrefValue) // Wrap the entire list item with the link $(this).find('.jupiterx-products-wrapper').wrap(''); });
});