Skip to content

Commit f435429

Browse files
committed
Fixed small error in jQuery selector example
$('.sidebar > ul') instead of $('.sidebar > .ul')
1 parent cad9032 commit f435429

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1249,7 +1249,7 @@
12491249
}
12501250
```
12511251

1252-
- For DOM queries use Cascading `$('.sidebar ul')` or parent > child `$('.sidebar > .ul')`. [jsPerf](http://jsperf.com/jquery-find-vs-context-sel/16)
1252+
- For DOM queries use Cascading `$('.sidebar ul')` or parent > child `$('.sidebar > ul')`. [jsPerf](http://jsperf.com/jquery-find-vs-context-sel/16)
12531253
- Use `find` with scoped jQuery object queries.
12541254

12551255
```javascript

0 commit comments

Comments
 (0)