jQuery visibility test
JavaScript performance comparison
Preparation code
<script src="//ajax.googleapis.com/ajax/libs/prototype/1/prototype.js"></script>
<div id='foo'>foo</div>
<div id='bar'>bar</div><script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script>
var foo = $('#foo').hide(),
bar = $('#bar');
$.fn.isVisible = function() {
return $.expr.filters.visible(this[0]);
};
</script>
Preparation code output
foo
bar
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
is(':hidden') |
|
pending… |
isVisible |
|
pending… |
Compare results of other browsers
Revisions
You can edit these tests or add even more tests to this page by appending /edit to the URL. Here’s a list of current revisions for this page:
- Revision 1: published by Sam Korn
- Revision 2: published
0 comments