jquery performance problem
-
(quote from site above)
You are using too specifics jQuery selectors. It could impact performance: see more information. 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:
jQuery(“.um-account-side li a.current”)
jQuery(“.um-modal .um-single-image-preview img”)
jQuery(“.um-search form *”)
jQuery(“.um-profile.um-viewing .um-profile-body .um-row”)
jQuery(“.um-account-side li a”)
These UM entries are only problems with performance
The page I need help with: [log in to see the link]
The topic ‘jquery performance problem’ is closed to new replies.