aboutsummaryrefslogtreecommitdiffstats
path: root/src/selector-native.js
Commit message (Collapse)AuthorAgeFilesLines
* AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163.Timmy Willison2013-08-151-1/+8
|
* Check nodeType of elements passed to selector-native's find. Fixes #13577.Timmy Willison2013-05-061-1/+11
|
* No ticket: boolean -> bool in selector-nativeTimmy Willison2013-05-061-1/+1
|
* Ref 4ef51690: Update selector-native for new Sizzle dependenciesRichard Gibson2013-04-051-0/+5
|
* Remove unprefixed `matchesSelector`. Stick most common first. Update SizzleTimmy Willison2013-03-231-2/+1
|
* Add warnings and ignore the built Sizzle file.Dave Methvin2013-02-271-0/+25
|
* Fix #13434: native-API selector moduleRichard Gibson2013-02-271-0/+125
What's out: * 6 KB * attribute not equal selector * positional selectors (:first; :eq(n); :odd; etc.) * type selectors (:input; :checkbox; :button; etc.) * state-based selectors (:animated; :visible; :hidden; etc.) * :has(selector) * custom selectors * leading combinators (e.g., $collection.find("> *")) * reliable functionality on XML fragments * requiring all parts of a selector to match elements under context (e.g., $div.find("div > *") now matches children of $div) * matching against non-elements * reliable sorting of disconnected nodes