All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.javascript.rules.javascript.S2714.html Maven / Gradle / Ivy

Using element type in class selectors is slower than using only the class selector.

Noncompliant Code Example

var $products = $("div.products");    // Noncompliant - slow

Compliant Solution

var $products = $(".products");    // Compliant - fast




© 2015 - 2025 Weber Informatics LLC | Privacy Policy