Skip to content

Instantly share code, notes, and snippets.

@joeynimu
Created May 12, 2016 12:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joeynimu/a0fa81e0153f36d95f52671a4fc168d1 to your computer and use it in GitHub Desktop.
Save joeynimu/a0fa81e0153f36d95f52671a4fc168d1 to your computer and use it in GitHub Desktop.
Test selector speed
;(function TimeThisMother() {
window.onload = function(){
setTimeout(function(){
var t = performance.timing;
alert("Speed of selection is: " + (t.loadEventEnd - t.responseEnd) + " milliseconds");
}, 0);
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment