jQuery hide() vs fadeOut() (v4)

Revision 4 of this benchmark created by d4mn on


Preparation HTML

<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<div id="hello">HELLO</div>

Setup

$("#hello").show();

Test runner

Ready to run.

Testing in
TestOps/sec
hide()
$("#hello").hide(250, function() {
});
ready
fadeOut()
$("#hello").fadeOut(250, function() {
});
ready
animate()
$("#hello").animate({opacity:0}, function() {
},250);
ready

Revisions

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