Hi there,
I received this insight from a test:
You are using too specifics jQuery selectors. It could impact performance. Here is an example of a good use of the library:
$( “.data table.firstClass td.secondClass” );
// Better: Drop the middle if possible
$( “.data td.secondClass” );
We found some too specifics selectors on your website:
polinacouture.com/wp-content/themes/bas[…]tions.js?ver=5.3.0
$(‘.basel-sticky-btn .basel-sticky-btn-wishlist a’)
$(‘.basel-sticky-btn .basel-sticky-btn-wishlist a’)
$(‘.basel-sticky-btn .basel-sticky-btn-compare a’)
$(‘.basel-sticky-btn .basel-sticky-btn-compare a’)
$(“.woocommerce .cart_totals table”)
$(“.mobile-nav .site-mobile-menu .menu-item-has-children”)
How to manage?
Kind regards