bgt loops

Benchmark created by bgt on


Preparation HTML

lol

Test runner

Ready to run.

Testing in
TestOps/sec
$.each
var links = $(".gallery-images").find("a");
$.each(links, function(){
this.href = "google.com";
});
ready
.each()
var links = $("a", ".gallery-images");
links.each(function(){
this.href = "google.com";
});
ready
selectors
var links = $(".gallery-images a");
links.each(function(){
this.href = "google.com";
});
ready

Revisions

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