HTML Preparation code:
x
 
1
<div id='id1'>THE PROBLEM:
2
3
Native JavaScript is compiled into machine code by most scripting engines offering incredible performance boost, however interaction with host (browser) objects outside the JavaScript native environment raises unpredictability and considerable performance lag, particularly when dealing with screen-rendered DOM objects or objects which cause Disk I/O (such as WebSQL).
4
5
THE SOLUTION:
6
7
You can’t really get away from them, but keep your interaction with host objects to an absolute minimum.</div>
8
9
10
<div id='id2'>THE PROBLEM:
11
12
Native JavaScript is compiled into machine code by most scripting engines offering incredible performance boost, however interaction with host (browser) objects outside the JavaScript native environment raises unpredictability and considerable performance lag, particularly when dealing with screen-rendered DOM objects or objects which cause Disk I/O (such as WebSQL).
13
14
THE SOLUTION:
15
16
You can’t really get away from them, but keep your interaction with host objects to an absolute minimum.</div>
17
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js'></script>
Tests:
  • Using multiple calls to host objects (DOM)

     
    jQuery('#id1')
           .width(600).height(400)
           .css('position', 'absolute')
           .css('top', '200px')
           .css('left', '200px');
    jQuery('#id1')
           .width(599).height(401)
           .css('position', 'relative')
           .css('top', '199px')
           .css('left', '199px');
  • Using batching - grouping multiple DOM manipulations together

     
    jQuery('#id2').css({
      width: '600px',
      height: '400px',
      position: 'absolute',
      top: '200px',
      left: '200px'}
    );
    jQuery('#id2').css({
      width: '599px',
      height: '401px',
      position: 'relative',
      top: '199px',
      left: '199px'}
    );
  • Using multiple calls to host objects (DOM) v2

     
    jQuery('#id1')
           .width(600).height(400);
           jQuery('#id1').css('position', 'absolute');
           jQuery('#id1').css('top', '200px');
           jQuery('#id1').css('left', '200px');
    jQuery('#id1')
           .width(599).height(401);
           jQuery('#id1').css('position', 'relative');
           jQuery('#id1').css('top', '199px');
           jQuery('#id1').css('left', '199px');
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Using multiple calls to host objects (DOM)
    Using batching - grouping multiple DOM manipulations together
    Using multiple calls to host objects (DOM) v2

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 11 days ago)
Mozilla/5.0 (iPhone; CPU iPhone OS 18_3_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Mobile/15E148 Safari/604.1
Mobile Safari 18 on iOS 18.3.2
View result in a separate tab
Test name Executions per second
Using multiple calls to host objects (DOM) 25933.5 Ops/sec
Using batching - grouping multiple DOM manipulations together 23125.9 Ops/sec
Using multiple calls to host objects (DOM) v2 24977.3 Ops/sec