We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9df1006 commit d85259bCopy full SHA for d85259b
README.md
@@ -28,8 +28,8 @@
28
29
### Subject of a selector
30
```javascript
31
-document.querySelector("div! a[href*=twitter]");// div
32
-document.querySelectorAll("body footer! div");// [footer]
+document.querySelector("div! a[href*=twitter]");// div that has **a** element with _href_ attribute that contains "twitter"
+document.querySelectorAll("body footer! div");// NodeList:[footer], if <footer> is in <body> and <footer> contains <div>
33
```
34
### :scope pseudo-class
35
@@ -73,8 +73,8 @@ The are few [GGC](http://closure-compiler.appspot.com/home) flags in script. You
73
74
## TODO
75
76
-- Tests: coming coon
77
-- Benchmark: coming coon
+- Tests: coming soon
+- Benchmark: coming soon
78
79
## License
80
0 commit comments