aboutsummaryrefslogtreecommitdiffstats
path: root/src/core.js
Commit message (Expand)AuthorAgeFilesLines
* The constructor check for isPlainObject was redundant, everything still passe...jeresig2009-12-181-1/+1
* Added additional checks for DOM nodes and window to isPlainObject, IE 8 was s...jeresig2009-12-181-1/+2
* Disabled the passthrough .attr(method_name) functionality. You can now use it...jeresig2009-12-181-4/+10
* Made isPlainObject() supporting null, undefined, and window values on IE too....Robert Katic2009-12-191-4/+6
* Revert the changes from 65ebf57c1e5d7fa96536b66d4fcacbafad8dc1e5, they were i...jeresig2009-12-171-7/+2
* Moved readyList check.jeresig2009-12-161-2/+2
* Retooled the arguments.callee-related changes in 98ce35d52b17a033822f31d8a362...jeresig2009-12-161-29/+48
* Make sure that dynamically-created elements don't have a parent. Fixes #5638.John Resig2009-12-101-2/+7
* Moved some methods around inbetween core.js and traversing.js. Core methods s...John Resig2009-12-101-19/+29
* Made some minor formatting changes to the access function.John Resig2009-12-101-10/+9
* Rewrote .merge() (faster and less obtuse now). Fixed #5610.John Resig2009-12-091-14/+11
* Fix up whitespace and a couple of glitches.Yehuda Katz2009-12-091-3/+3
* Switched jQuery() to represent jQuery([]) instead of jQuery(document).John Resig2009-12-091-3/+1
* Clarified the use of jQuery.browser and enforced jQuery.browser.firefox match...John Resig2009-12-091-4/+3
* Make sure that document ready events, inside a document ready, are added to t...John Resig2009-12-091-1/+1
* Added in jQuery.browser.firefox, deprecated jQuery.browser.mozilla.John Resig2009-12-081-2/+5
* Get browser version rather than rendering engine version.Dave Methvin2009-12-091-2/+2
* Removed uses of arguments.callee from jQuery.John Resig2009-12-071-7/+9
* Moved .ready() to core.js from event.js.John Resig2009-12-071-0/+123
* Added an extra function check to prevent crashes in Safari 2. Fixes #3039.John Resig2009-12-061-1/+3
* Use the isXML function from Sizzle.John Resig2009-12-061-8/+0
* Merge branch 'master' of git@github.com:jquery/jqueryJohn Resig2009-12-061-1/+1
|\
| * Fix regexp for $.trim so it doesn't whack embedded spaces.Dave Methvin2009-12-061-1/+1
* | Renamed isObjectLiteral to isPlainObject (makes more sense, per the suggestio...John Resig2009-12-061-3/+3
|/
* Landing Ben Alman's patch to add nextUntil, prevUntil, and parentsUntil. Also...Ben Alman2009-12-041-2/+3
* Make sure that a DOM node isn't getting passed through (as is the case in IE,...jeresig2009-12-021-1/+1
* Merge branch 'master' of github.com:jquery/jqueryjeresig2009-11-301-1/+1
|\
| * Fixes $.trim for   closes #4980Yehuda Katz2009-11-301-1/+1
* | Fixed bug with singleTag matching in core.js.jeresig2009-11-301-1/+1
|/
* Generic jQuery.merge and safer jQuery.makeArray(nodeList).Robert Katic2009-11-261-17/+23
* Made jQuery.extend(true, ...) to extend recursively only 'object literal' val...Robert Katic2009-11-121-13/+4
* Made isObjectLiteral to work correctly with custom objects with empty prototy...Robert Katic2009-11-121-2/+9
* Use array.indexOf if available (speeds up modern browsers). Thanks to lrbabe ...lrbabe2009-11-111-0/+4
* Made jQuery('<div/>') and jQuery('<div></div>') use the same code path (makin...John Resig2009-11-111-1/+1
* Removed the use of this.length++ as it makes it hard to use the init method d...John Resig2009-11-111-2/+2
* Renamed isObject to isObjectLiteral to be more specific.John Resig2009-11-101-2/+2
* Added comments to isObject.rkatic2009-11-091-1/+12
* Comment nodes are discarded from a merge, for no apparent reason. Fixes #5438.John Resig2009-11-071-13/+2
* Moved a bunch of methods out of the jQuery-specific Sizzle code into more-app...John Resig2009-10-261-1/+1
* A follow-up to [6578] (which stopped adding expandos to elements that didn't ...John Resig2009-09-251-19/+0
* jquery core: removing the body optimization, as it is then handled by $("TAG").Ariel Flesler2009-09-141-5/+0
* jquery core: commenting the new access function.Ariel Flesler2009-09-111-0/+6
* jquery core: Closes #5189. Added a generic function to handle getting/setting...Ariel Flesler2009-09-091-0/+24
* jquery core: fixes 5187. getElementsByTagName optimization was breaking $('di...Ariel Flesler2009-09-091-0/+1
* jquery core: closes #5186. getElementsByTagName optimization was breaking the...Ariel Flesler2009-09-091-2/+2
* Optimize jQuery() for the case $("TAG").John Resig2009-09-081-0/+4
* Use the native Array indexOf method if it exists, for jQuery.inArray.John Resig2009-09-081-1/+8
* Split out the fragment-building code from domManip. Switched core.js to using...John Resig2009-09-071-2/+17
* Added an optimization for the case where $("body") is used.John Resig2009-09-071-0/+5
* Fixed a bug with the isXMLDoc test - also made sure that isXMLDoc was handlin...John Resig2009-08-271-1/+2