aboutsummaryrefslogtreecommitdiffstats
path: root/src/selector.js
Commit message (Expand)AuthorAgeFilesLines
* Build: ESLint detailsOleg Gaidarenko2016-06-111-1/+3
* Build: Update jscs and lint filesOleg Gaidarenko2015-09-071-1/+1
* Core: Follow the AMD specification for defineAlexander O'Mara2015-04-131-1/+1
* No ticket. Restore checking individual src/**/*.js files by jsHint.Michał Gołębiowski2013-09-061-1/+1
* AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163.Timmy Willison2013-08-151-0/+1
* Pull in the Sizzle library dynamically using a submodule and make it part of ...John Resig2009-10-261-1007/+0
* Moved a bunch of methods out of the jQuery-specific Sizzle code into more-app...John Resig2009-10-261-61/+0
* A follow-up to [6578] (which stopped adding expandos to elements that didn't ...John Resig2009-09-251-0/+25
* Missing a var on a for loop, caused a variable to be leaked.John Resig2009-09-151-1/+1
* Missing a var on a for loop, caused a variable to be leaked.John Resig2009-09-151-1/+1
* fixed global variables introduced in for loop with missing var-keyword (detec...Jörn Zaefferer2009-09-151-1/+1
* Make sure that at least one argument is provided to .slice(), in accordance w...John Resig2009-07-231-2/+2
* Standardize on using .nodeName in place of .tagName. Fixes jQuery bug #4923.John Resig2009-07-191-1/+1
* Standardizing on .test() and .exec() - moving away from using .match() for Re...John Resig2009-07-191-3/+3
* reverting sizzle updates from previous commit, appears i had an outdated versionBrandon Aaron2009-06-231-3/+3
* fix for #4512 and minor sizzle updatesBrandon Aaron2009-06-231-14/+10
* Removed some cases of strict errors.John Resig2009-05-201-3/+3
* fix :hidden and :visible selectors. fixes #4512Brandon Aaron2009-05-181-2/+12
* fix :hidden selector that was accidentally reverted in previous commit, also ...Brandon Aaron2009-05-041-1/+1
* fix memory leak in IEBrandon Aaron2009-05-041-16/+24
* remove trailing spacesBrandon Aaron2009-03-231-14/+14
* fix for #4374, gap in :hidden, :visible logicBrandon Aaron2009-03-181-1/+1
* Backed out commit [6260], was causing too many problems. We'll have to bite t...John Resig2009-03-171-12/+9
* Moved to a generic solution for copying methods over for querySelectorAll-usi...John Resig2009-02-271-4/+3
* No longer use arguments.callee or RegExp (use new RegExp, instead) for ES 3.1...John Resig2009-02-261-1/+1
* As it turns out, the context was being started at a higher root than needed -...John Resig2009-02-261-1/+1
* Removed the need for the results set to have array methods. Resolves jQuery b...John Resig2009-02-251-7/+10
* Simplified the isXML function, no need to use recursion.John Resig2009-02-251-1/+1
* Expose the sort/unique code from Sizzle as Sizzle.uniqueSort().John Resig2009-02-251-10/+13
* Landed some improvements for improving the performance of ID-rooted queries (...John Resig2009-02-251-23/+36
* Tagged the Sizzle 1.0 release.John Resig2009-02-201-3/+2
* Switch to using createRange for element comparision instead of Array indexOf ...John Resig2009-02-171-7/+9
* Brought back the compareDocumentPosition code. While it is redundant in Firef...John Resig2009-02-171-2/+10
* Added support for class selectors and class attribute selectors on XML docume...John Resig2009-02-161-8/+16
* Fixed an issue with :nth-child selectors embedded in :not() filters. Fixes jQ...John Resig2009-02-161-20/+20
* Changed the jQuery hidden/visible selectors to be a little more precise.John Resig2009-02-161-2/+2
* Change the behavior of how :visible and :hidden work. :hidden is when an elem...John Resig2009-02-161-6/+2
* Fixed a bug with certain + selectors failing (Fixes jQuery bug #4023). Also t...John Resig2009-02-161-9/+18
* Fixed the issue where weird characters were being used in ID selectors. Fixes...John Resig2009-02-151-1/+1
* Make sure that [name=FOO] searches actually have the specified name (IE inclu...John Resig2009-02-151-1/+8
* Added fixes for two different :not() bugs. One with p:not(p.foo) failing and ...John Resig2009-02-151-3/+1
* Provide a graceful failover for [name=foo] queries that are looking for non-i...John Resig2009-02-141-2/+3
* The compareDocumentPosition check was extraneous - indexOf works in all the o...John Resig2009-02-141-13/+5
* Added support for sorting in Safari - when querySelectorAll isn't able to be ...John Resig2009-02-141-0/+11
* Oops, the sourceIndex of the documentElement in IE is 1, not 0.John Resig2009-02-141-1/+1
* Make sure that elements are returned in document order - and that the results...John Resig2009-02-141-0/+33
* Merging a bunch of changes back from Sizzle, by LosTFx.John Resig2009-02-101-65/+76
* Reworked the attribute selection code to be able to select false-y values - a...John Resig2009-02-091-2/+11
* match[4] is already saved in check - thanks Balazs.John Resig2009-02-091-1/+1
* Added a fix for empty attribute selection values. Fixes jQuery bug #3990.John Resig2009-02-071-1/+1