HTML Preparation code:
AخA
 
1
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js'></script>
2
<script>
3
  var $jq1110 = $.noConflict(true);
4
</script>
5
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js'></script>
6
<script>
7
  var $jq1120 = $.noConflict(true);
8
</script>
9
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
10
<script>
11
  var $jq224 = $.noConflict(true);
12
</script>
13
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
14
<script>
15
  var $jq331 = $.noConflict(true);
16
</script>
17
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
18
<script>
19
  var $jq340 = $.noConflict(true);
20
</script>
21
<div>
22
  <ul id="menu">
23
    <li class="menu-item">1</li>
24
    <li class="menu-item">2</li>
25
    <li class="menu-item">3</li>
26
    <li class="menu-item">4</li>  
27
  </ul>
28
</div>
Script Preparation code:
 
function tests($) {
    $(".menu-item").eq(2).closest("ul").css({
      "background-color": "red"
    }).parent().css({
      "border": "1px solid blue"
    }).append($("<p></p>").text("Text.").css({
      "background-color": "green"
    })).end().end().remove();
  console.log('tests' + $);
}
Tests:
  • Test jQuery 1.12.0

     
    tests($jq1120);
  • Test jQuery 2.2.4

     
    tests($jq224);
  • Test jQuery 3.3.1

     
    tests($jq331);
  • Test jQuery 3.4.0

     
    tests($jq340);
  • Test jQuery 1.11.0

     
    tests($jq1110);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Test jQuery 1.12.0
    Test jQuery 2.2.4
    Test jQuery 3.3.1
    Test jQuery 3.4.0
    Test jQuery 1.11.0

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36
Chrome 114 on Windows
View result in a separate tab
Test name Executions per second
Test jQuery 1.12.0 22090.7 Ops/sec
Test jQuery 2.2.4 30013.8 Ops/sec
Test jQuery 3.3.1 27343.7 Ops/sec
Test jQuery 3.4.0 27522.7 Ops/sec
Test jQuery 1.11.0 16192.1 Ops/sec