jQuery body vs. document.body selector (v17)

Revision 17 of this benchmark created on


Preparation HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

Test runner

Ready to run.

Testing in
TestOps/sec
$('body')
$('body').width();
$('body').height();
ready
$(document.body)
$(document.body).width();
$(document.body).height();
ready
$('body') cached
var body=$('body');
body.width();
body.height();
ready
$(document.body) cached
var body=$(document.body);
body.width();
body.height();
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.