Using element type in class selectors is slower than using only the class selector.
var $products = $("div.products"); // Noncompliant - slow
var $products = $(".products"); // Compliant - fast
This rule is deprecated, and will eventually be removed.