[jQuery] label the faster and slower lookup

This commit is contained in:
Harrison Shoff
2012-11-08 14:29:26 -08:00
parent 9fb45df8fc
commit 4d9dc6cc8f

View File

@@ -1194,10 +1194,10 @@
// good
$('.sidebar > ul').hide();
// good
// good (slower)
$sidebar.find('ul');
// good
// good (faster)
$($sidebar[0]).find('ul');
```