Avoid overly specific jQuery selectors
-
Please help to fix this issue caused by your plugin.
=> you will find domain name in the picture “meil…ion.com”`You are using too specific jQuery selectors which decrease the performance of your website: find out more . Here is an example of a good use of jQuery:
$ (“.data table.firstClass td.secondClass”);
// More efficient: remove the
intermediate // selector if possible
$ (“.data td.secondClass”);If possible, simplify the following selectors :
$(‘.woocommerce-ordering .drop li a’)
$ (‘. mobile-menu li .chevron’)
$(‘.review-box .overall .percent’)The page I need help with: [log in to see the link]
The topic ‘Avoid overly specific jQuery selectors’ is closed to new replies.