|
4 | 4 | * Note that this DOES NOT SUPPORT many documented jQuery |
5 | 5 | * features in exchange for its smaller size: |
6 | 6 | * |
7 | | - * Attribute not equal selector |
8 | | - * Positional selectors (:first; :eq(n); :odd; etc.) |
9 | | - * Type selectors (:input; :checkbox; :button; etc.) |
10 | | - * State-based selectors (:animated; :visible; :hidden; etc.) |
11 | | - * :has(selector) |
12 | | - * :not(complex selector) |
13 | | - * custom selectors via jQuery extensions |
14 | | - * Leading combinators (e.g., $collection.find("> *")) |
15 | | - * Reliable functionality on XML fragments |
16 | | - * Requiring all parts of a selector to match elements under context |
17 | | - * (e.g., $div.find("div > *") now matches children of $div) |
18 | | - * Matching against non-elements |
19 | | - * Reliable sorting of disconnected nodes |
20 | | - * querySelectorAll bug fixes (e.g., unreliable :focus on WebKit) |
| 7 | + * * Attribute not equal selector (!=) |
| 8 | + * * Positional selectors (:first; :eq(n); :odd; etc.) |
| 9 | + * * Type selectors (:input; :checkbox; :button; etc.) |
| 10 | + * * State-based selectors (:animated; :visible; :hidden; etc.) |
| 11 | + * * :has(selector) |
| 12 | + * * :not(complex selector) |
| 13 | + * * custom selectors via jQuery extensions |
| 14 | + * * Leading combinators (e.g., $collection.find("> *")) |
| 15 | + * * Reliable functionality on XML fragments |
| 16 | + * * Requiring all parts of a selector to match elements under context |
| 17 | + * (e.g., $div.find("div > *") now matches children of $div) |
| 18 | + * * Matching against non-elements |
| 19 | + * * Reliable sorting of disconnected nodes |
| 20 | + * * querySelectorAll bug fixes (e.g., unreliable :focus on WebKit) |
21 | 21 | * |
22 | 22 | * If any of these are unacceptable tradeoffs, either use the full |
23 | 23 | * selector engine or customize this stub for the project's specific |
|
0 commit comments