2023-05-03 11:06:20 +02:00
== Why is this an issue?
2021-04-28 16:49:39 +02:00
jQuery doesn't cache elements for you. If you've made a selection that you might need to make again, you should save the selection in a variable rather than making the selection repeatedly.
2021-04-28 18:08:03 +02:00
2023-05-03 11:06:20 +02:00
=== Noncompliant code example
2021-04-28 16:49:39 +02:00
With the default threshold of 2
2022-02-04 17:28:24 +01:00
[source,javascript]
2021-04-28 16:49:39 +02:00
----
$( "p" ).hide();
$( "p" ).show(); // Noncompliant
----
2021-04-28 18:08:03 +02:00
2023-05-03 11:06:20 +02:00
=== Compliant solution
2021-04-28 16:49:39 +02:00
2022-02-04 17:28:24 +01:00
[source,javascript]
2021-04-28 16:49:39 +02:00
----
var paragraph = $( "p" );
paragraph.hide();
paragraph.show();
----
2021-04-28 18:08:03 +02:00
2023-05-03 11:06:20 +02:00
=== Exceptions
2021-04-28 16:49:39 +02:00
Stored selections are not updated when the DOM changes. Since variables may need to updated this rule ignores selections that are repeated during an assignment.
2022-08-04 15:12:16 +02:00
[source,javascript]
2021-04-28 16:49:39 +02:00
----
var paragraph = $("p");
// ...
paragraph = $("p");
----
2021-04-28 18:08:03 +02:00
2021-06-02 20:44:38 +02:00
2021-06-03 09:05:38 +02:00
ifdef::env-github,rspecator-view[]
2021-09-20 15:38:42 +02:00
'''
== Implementation Specification
(visible only on this page)
2023-05-25 14:18:12 +02:00
=== Message
Selection "xxx" is made n times. It should be stored in a variable and reused.
=== Parameters
.threshold
****
----
2
----
Number of allowed repetition before triggering an issue
****
2021-09-20 15:38:42 +02:00
2021-06-08 15:52:13 +02:00
'''
2021-06-02 20:44:38 +02:00
== Comments And Links
(visible only on this page)
2023-05-25 14:18:12 +02:00
=== on 25 Mar 2015, 11:00:35 Linda Martin wrote:
\[~ann.campbell.2] Assigned for review and completion.
=== on 10 Apr 2015, 14:44:08 Elena Vilchik wrote:
\[~ann.campbell.2], i added parameter as we discussed.
=== on 1 Nov 2019, 17:29:29 Elena Vilchik wrote:
See \https://github.com/SonarSource/SonarJS/issues/1698
2021-06-03 09:05:38 +02:00
endif::env-github,rspecator-view[]