aboutsummaryrefslogtreecommitdiffstats
path: root/src/selector
Commit message (Collapse)AuthorAgeFilesLines
...
* Added a fix and test for bug #978 (Appending elements into an IFrame, in IE).John Resig2007-03-241-2/+2
|
* * Fixed IE ID selectors selecting by the name attribute and added testsBrandon Aaron2007-02-232-4/+12
| | | | | * Added href attribute test to test suite * Updated Changelog
* Added a test case for bug #986.John Resig2007-02-221-3/+4
|
* Update for src and href attribute selectors fixBrandon Aaron2007-02-141-1/+1
|
* Fix the ^= type attribute selector in firefox for href. Brandon Aaron2007-02-131-1/+1
|
* Fixed the ~ selector - it was selecting in the wrong direction.John Resig2007-02-041-1/+1
|
* Added test for #891Jörn Zaefferer2007-01-311-1/+5
|
* Added test for #895Jörn Zaefferer2007-01-311-3/+6
|
* Fixed an issue with child selectors that also have filters.John Resig2007-01-221-2/+2
|
* Added in jQuery.nodeName() to simplify checking nodeName constantly.John Resig2007-01-221-5/+5
|
* Fixed an issue with child selectors accidentally triggering filter mode.John Resig2007-01-221-2/+3
|
* Fixed some more nodeName inconsistencies.John Resig2007-01-221-2/+2
|
* Fixed an issue with child selectors and XML documents (nodeName isn't in ↵John Resig2007-01-221-1/+1
| | | | all-caps, and it was assumed that it was).
* Converted a lot of for loops to use jQuery.each() instead.John Resig2007-01-141-17/+18
|
* Added a fix for :nth-child(even/odd).John Resig2007-01-141-4/+4
|
* Added a fix for $("div").filter("*") never ending.John Resig2007-01-141-1/+1
|
* Fixed a few docsJörn Zaefferer2007-01-141-1/+1
|
* Removed a bunch more bytes from the total file size.John Resig2007-01-141-22/+20
|
* Added in jQuery.isFunction().John Resig2007-01-141-1/+1
|
* Added minor regexp optimization.John Resig2007-01-121-3/+3
|
* Added a fix for $("object *") in IE7.John Resig2007-01-111-2/+10
|
* Removed support for //foo | //bar - please use "," instead.John Resig2007-01-101-2/+2
|
* Added support .css("left",30). Fixed up the multiFilter code.John Resig2007-01-101-7/+2
|
* Lots of improvements. Added support for .not( jQuery("...") ) and support ↵John Resig2007-01-101-0/+18
| | | | for multi filters: .filter("foo,bar") .parent("div, .class"), etc.
* Added support for (basic) nested parens and (basic) nested brackets. You can ↵John Resig2007-01-091-2/+2
| | | | now do: div:not(.foo[a:not(.even)]) or div[p[a.even]].
* Fixed a bug with $("body") in dynamic documents, refactored $(...), stopped ↵John Resig2007-01-081-4/+0
| | | | the test suite from trying to run Ajax tests locally.
* Added support for [@foo] against DOM object properties (not just attributes).John Resig2007-01-071-1/+1
|
* Fixed problem with $("div",$("body")) breaking (returning an array, of ↵John Resig2007-01-071-2/+2
| | | | length one, containing undefined).
* Fixed test for object/param selection (thanks Andrea)Jörn Zaefferer2007-01-071-3/+2
|
* Updated test for #750Jörn Zaefferer2007-01-031-2/+2
|
* Added assertions for #750Jörn Zaefferer2007-01-031-1/+4
|
* Moved all the expressions tests over into selector area, out of the main suite.John Resig2006-12-311-0/+140
|
* Moved the bulk of the selector code out into a separate file, changed the ↵John Resig2006-12-311-0/+426
build files to represent this.