| Commit message (Expand) | Author | Age | Files | Lines |
* | Selector: Make `selector.js` module depend on `attributes/attr.js` | Michał Gołębiowski-Owczarek | 2024-01-12 | 1 | -2/+0 |
* | CSS:Selector: Align with 3.x, remove the outer `selector.js` wrapper | Michał Gołębiowski-Owczarek | 2023-09-20 | 3 | -3/+7 |
* | Core: Use named exports in `src/` | Michał Gołębiowski-Owczarek | 2023-09-12 | 22 | -79/+61 |
* | Tests: Indicate Chrome 112 & Safari 16.4 pass the cssHas support test | Michał Gołębiowski-Owczarek | 2023-04-05 | 1 | -2/+2 |
* | Selector: Stop relying on CSS.supports( "selector(...)" ) | Michał Gołębiowski-Owczarek | 2023-02-14 | 2 | -28/+21 |
* | Selector: Backport jQuery selection context logic to selector-native | Michał Gołębiowski-Owczarek | 2023-02-13 | 18 | -0/+325 |
* | Selector: Make selector lists work with `qSA` again | Michał Gołębiowski-Owczarek | 2022-12-19 | 2 | -3/+5 |
* | Core:Selector: Move jQuery.contains from the selector to the core module | Michał Gołębiowski-Owczarek | 2022-12-12 | 1 | -15/+0 |
* | Selector: Implement the `uniqueSort` chainable method | Michał Gołębiowski-Owczarek | 2022-11-28 | 1 | -0/+5 |
* | Tests: Indicate Firefox 106+ passes the `cssSupportsSelector` test | Michał Gołębiowski-Owczarek | 2022-11-25 | 1 | -1/+1 |
* | Selector:Manipulation: Fix DOM manip within template contents | Michał Gołębiowski-Owczarek | 2022-11-14 | 1 | -4/+3 |
* | Selector: Use jQuery `:has` if `CSS.supports(selector(...))` non-compliant | Michał Gołębiowski-Owczarek | 2022-09-19 | 2 | -11/+54 |
* | Core: Don't rely on splice being present on input | Bruno PIERRE | 2022-01-24 | 1 | -1/+2 |
* | CSS: Trim whitespace surrounding CSS Custom Properties values | fecore1 | 2021-09-23 | 2 | -3/+1 |
* | Core: Drop support for Edge Legacy (i.e. non-Chromium Microsoft Edge) | Michał Gołębiowski-Owczarek | 2020-09-22 | 3 | -38/+17 |
* | Selector: Remove the "a:enabled" workaround for Chrome <=77 | Michał Gołębiowski-Owczarek | 2019-12-16 | 1 | -9/+0 |
* | Selector: Make empty attribute selectors work in IE again | Michał Gołębiowski-Owczarek | 2019-11-18 | 2 | -1/+17 |
* | Core: Migrate from AMD to ES modules 🎉 | Michał Gołębiowski-Owczarek | 2019-11-18 | 5 | -41/+11 |
* | Selector: Use shallow document comparisons in uniqueSort | Michał Gołębiowski-Owczarek | 2019-10-21 | 1 | -3/+16 |
* | Core: Remove private copies of push, sort & splice from the jQuery prototype | Michał Gołębiowski-Owczarek | 2019-09-24 | 1 | -3/+4 |
* | Selector: reduce size, simplify setDocument | Michał Gołębiowski-Owczarek | 2019-08-26 | 1 | -0/+30 |
* | Selector: Leverage the :scope pseudo-class where possible | Michał Gołębiowski-Owczarek | 2019-08-19 | 1 | -0/+17 |
* | Selector: Inline Sizzle into the selector module | Michał Gołębiowski-Owczarek | 2019-07-29 | 3 | -0/+133 |
* | Reorganzing the jQuery source (first phase). | John Resig | 2007-09-08 | 2 | -634/+0 |
* | Added a new :animated selector - only selects elements that are currently bei... | John Resig | 2007-09-08 | 1 | -1/+4 |
* | Integration of Mike Alsup's excellent form serialization code. The benefits a... | John Resig | 2007-09-05 | 1 | -22/+22 |
* | Removed all deprecated functionality for jQuery 1.2. A full list of what was ... | John Resig | 2007-09-04 | 2 | -92/+43 |
* | Removed all inline documentation. The current version of all documentation is... | John Resig | 2007-09-04 | 1 | -36/+0 |
* | Added support for a new :header psuedo-selector (only selects H1-H6 elements). | John Resig | 2007-08-31 | 2 | -2/+7 |
* | Fixed the issue where $("body").find("div#foo") would ignore the specified ta... | John Resig | 2007-08-27 | 2 | -2/+4 |
* | Marked all the appropriate methods as being deprecated for the 1.1.4 release ... | John Resig | 2007-08-24 | 1 | -0/+7 |
* | Fixed use of eval() and new Function() to work within the correct scope (and ... | John Resig | 2007-08-22 | 1 | -1/+1 |
* | Added the new :has() selector (Bug #1521) | John Resig | 2007-08-21 | 2 | -2/+6 |
* | Fix for a selector speed regression (calling a simple selector many times res... | John Resig | 2007-08-21 | 1 | -5/+12 |
* | Added a fix for IE returning comment nodes in * queries. I put the logic in $... | John Resig | 2007-08-19 | 1 | -1/+6 |
* | The test for underscore selectors broke under Opera, so the element is now lo... | John Resig | 2007-07-30 | 1 | -3/+12 |
* | Added a fix for Safari's broken CSS getComputedStyle accessing. Additionally,... | John Resig | 2007-07-29 | 1 | -1/+1 |
* | Integrated the custom fx test suite into the main test suite. All tests are n... | John Resig | 2007-07-29 | 1 | -11/+11 |
* | $("#foo", xml) would always return an empty set, fixed (bug #877). Additional... | John Resig | 2007-07-25 | 1 | -1/+1 |
* | Added a fix for relative // - $("//div",this) (bug #1418) | John Resig | 2007-07-25 | 2 | -2/+3 |
* | Added a fix for h1 + h2 not working. (Bug #1361) | John Resig | 2007-07-20 | 1 | -1/+1 |
* | Final fix for Safari crasher (bug #1331). | John Resig | 2007-07-06 | 1 | -1/+1 |
* | Fix for Safari 1.3 crash (bug #1331). | John Resig | 2007-07-05 | 1 | -1/+1 |
* | fix little typo in comment | Ed Engelhardt | 2007-07-05 | 1 | -1/+1 |
* | Added fix for broken child selectors in XML documents, bug #1346. | John Resig | 2007-07-05 | 1 | -2/+2 |
* | Added a fix for bug #1331, which caused Safari 1.3 to crash. | John Resig | 2007-07-04 | 1 | -1/+1 |
* | Fixed bug that prevented $= from working on elements that didn't have the spe... | John Resig | 2007-07-04 | 1 | -1/+1 |
* | Who am I kidding |= is useless. | John Resig | 2007-06-29 | 1 | -2/+2 |
* | Added minor support for |= and ~= selectors. | John Resig | 2007-06-29 | 1 | -2/+2 |
* | Added fix for :nth-child(n). | John Resig | 2007-06-29 | 1 | -1/+1 |