jQuery .remove vs. .hide (v7)

Revision 7 of this benchmark created on


Preparation HTML

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

<div id="remove-me"></div>
<div id="hide-me"></div>

Test runner

Ready to run.

Testing in
TestOps/sec
.remove()
$('#remove-me').remove();
ready
.hide()
$('#hide-me').hide();
ready
.css('display', 'none')
$('#hide-me').css('display', 'none');
ready

Revisions

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