aboutsummaryrefslogtreecommitdiffstats
path: root/src/jquery/jquery.js
Commit message (Collapse)AuthorAgeFilesLines
* Fixed .not([]) not working properly.John Resig2007-01-111-1/+1
|
* Fixed missing typoJörn Zaefferer2007-01-111-1/+1
|
* Fixed bug with .text(), it only returned the text for the first element.John Resig2007-01-111-1/+1
|
* Fixed the Safari crashing bug. So much hate.John Resig2007-01-111-2/+2
|
* Fixed docs for .clone(Boolean).John Resig2007-01-101-0/+1
|
* Modified ready to event to pass jQuery object, allowing users to avoid the ↵Jörn Zaefferer2007-01-101-0/+8
| | | | ugly custom alias pattern, added examples to both ready(Function) and $(Function)
* Added support .css("left",30). Fixed up the multiFilter code.John Resig2007-01-101-6/+18
|
* Lots of improvements. Added support for .not( jQuery("...") ) and support ↵John Resig2007-01-101-22/+40
| | | | for multi filters: .filter("foo,bar") .parent("div, .class"), etc.
* Added back in height and width - they now behave more appropriately.John Resig2007-01-101-0/+68
|
* .remove("...") removed too much.John Resig2007-01-101-5/+7
|
* We've decided against .set() and are moving back to .pushStack().John Resig2007-01-101-11/+11
|
* Added tests for almost everything in jquery/jquery.js; fixed some docs and ↵Jörn Zaefferer2007-01-101-25/+22
| | | | removed the now useless docs for $(jQuery)
* Fixed add to also create HTML on-the-fly by using jQuery() instead of ↵Jörn Zaefferer2007-01-101-1/+14
| | | | jQuery.find()
* Added tests for add() and fixed #770Jörn Zaefferer2007-01-101-3/+3
|
* Fixed a bug with .append() and <td>/<tr>.John Resig2007-01-101-3/+5
|
* Removed duplicated show/hide/toggle, added test for toggle(), started ↵Jörn Zaefferer2007-01-091-58/+0
| | | | documentation of event properties/methods
* Fixed .next() and .prev().John Resig2007-01-091-2/+2
|
* Added test and fixed parents()Jörn Zaefferer2007-01-091-1/+1
|
* Added test for toggleClass, fixed jQuery.className.has to accept both node ↵Jörn Zaefferer2007-01-081-2/+6
| | | | and className (#762)
* Pruned a lot of extra code out and improved how .html() works.John Resig2007-01-081-59/+65
|
* .text( String ) now works as you'd expect it to, plus it's much faster and ↵John Resig2007-01-081-19/+9
| | | | smaller - which is good.
* Fixed a bug in the jQuery.prop() addition and fixed the test cases to ↵John Resig2007-01-081-1/+1
| | | | represent the current set of features.
* I broke out the ${...} functionality into a separate plugin so that we can ↵John Resig2007-01-081-20/+9
| | | | develop it further. I left a hook in jquery.js so that this can be done, plus I left in the function() functionality.
* Fixed a bug with $("body") in dynamic documents, refactored $(...), stopped ↵John Resig2007-01-081-21/+23
| | | | the test suite from trying to run Ajax tests locally.
* Implemented #756, making text(String) really usefulJörn Zaefferer2007-01-071-7/+15
|
* Fixed #753 in Opera and IEJörn Zaefferer2007-01-071-2/+2
|
* Implemented #753Jörn Zaefferer2007-01-071-3/+44
|
* Fixed problem with $("div",$("body")) breaking (returning an array, of ↵John Resig2007-01-071-1/+1
| | | | length one, containing undefined).
* Reorganized the different effects to be in fx.js, instead of jquery.js - and ↵John Resig2007-01-071-2/+2
| | | | cleaned up some of the documentation.
* Fix for #754Jörn Zaefferer2007-01-071-6/+12
|
* Improved the categories of a bunch of docs, upped the version to 1.1.John Resig2007-01-071-17/+17
|
* Fixed the docs for noConflict, fixed a bug with pager.John Resig2007-01-061-5/+9
|
* Removed all the extra helper macros for 1.1, and adjusted the test suite ↵John Resig2007-01-061-934/+505
| | | | accordingly.
* fixed typo (easeout); added check if jQuery._$ even exists, added examples ↵Jörn Zaefferer2007-01-051-4/+21
| | | | for usage of $.noConflict()
* Added in the new .noConflict() function for resolving conflict between ↵John Resig2007-01-041-0/+18
| | | | jQuery and other $ functions.
* Improved a lot of docs, adding description to examples, merging methods with ↵Jörn Zaefferer2007-01-041-183/+149
| | | | optional arguments; Modified filter(Function) to set correct scope (this == element) instead of passing element as argument
* Changed "Hash" to "Map" in docsJörn Zaefferer2007-01-041-7/+9
|
* Improved docs for append, prepend, before and after, merging the three pairs ↵Jörn Zaefferer2007-01-021-96/+28
| | | | into one
* Completely removed pushStack - and all code related to .find(..., fn). The ↵John Resig2007-01-021-68/+44
| | | | stack is, also, non-destructive and maintained nicely using references.
* Added test and documentation for filter(Function)Jörn Zaefferer2007-01-011-2/+23
|
* Moved the bulk of the selector code out into a separate file, changed the ↵John Resig2006-12-311-426/+1
| | | | build files to represent this.
* Moved all the relevant event-related code into the event module.John Resig2006-12-311-304/+0
|
* Fixed event.handle to return undefined or falseJörn Zaefferer2006-12-311-1/+2
|
* Removed documentation for oneXXX and unXXX methods (not yet implementation), ↵Jörn Zaefferer2006-12-301-0/+33
| | | | added implementation for one()
* Fixed missing semicolonJörn Zaefferer2006-12-301-1/+1
|
* Added support for adding multiple classes simultaneously, fixed a bug with ↵John Resig2006-12-291-29/+28
| | | | remove class.
* Improved docs for removeClass (optional parameter, removes all classes if ↵Jörn Zaefferer2006-12-291-3/+7
| | | | not specified)
* Added in some changes to class handling and some docs for jQuery.nth().John Resig2006-12-291-22/+27
|
* Implemented, tested and documented #202Jörn Zaefferer2006-12-281-4/+22
|
* Fixed minor bug in jQuery.parse[1] expression.John Resig2006-12-231-1/+1
|