I found that the $.each is very slow and makes problems to the web pages if containing lot of various jQuery effects.
I’d like to know if there is a good alternative to the $.each, for example:
$('ul li').each(function() {
var singleLi = $(this);
});
without the hover, how can I do the same without using each?
Thanks.
Exactly the same way without
each