[jquery] the faster lookup isn't actually faster. Fixes #90

This commit is contained in:
Harrison Shoff
2013-10-25 14:20:42 -07:00
parent 5a769c1c0e
commit 6394ca8dd8

View File

@@ -1354,11 +1354,8 @@
// good
$('.sidebar > ul').hide();
// good (slower)
// good
$sidebar.find('ul');
// good (faster)
$($sidebar[0]).find('ul');
```
**[[⬆]](#TOC)**