aboutsummaryrefslogtreecommitdiffstats
path: root/src/core.js
Commit message (Expand)AuthorAgeFilesLines
* Allow plugins to delay the exeuction of the ready event. Delay the ready even...John Resig2010-09-201-2/+16
* Wrap the core return in parens to fix a confused JSLint.jeresig2010-09-141-1/+1
* Make sure that jQuery is being exposed outside of core (this will be stripped...jeresig2010-09-091-2/+2
* Make sure that the removeEvent and buildFragment private functions are expose...jeresig2010-09-081-1/+1
* Switched to use 'in' for the setInterval/window check as it also skirts aroun...John Resig2010-08-271-1/+1
* Blackberry 4.6 is capable of finding elements that are no longer in the DOM v...John Resig2010-08-271-1/+3
* Use the native isArray whenever possible. See perf test by jdalton here: http...John Resig2010-08-271-1/+1
* Simplify the logic in $.type, thanks to jdalton for the suggesiton in 5d2be7e...John Resig2010-08-271-4/+2
* Added some tweaks to $.type to handle null and undefined. Added a bunch of un...John Resig2010-08-271-1/+5
* Adding in a jQuery.type(obj) method (a simple map to using Object.prototype.t...John Resig2010-08-251-5/+9
* Tweaked logic for working around Blackberry 4.7 makeArray(RegExp) issue. Fixe...John Resig2010-08-251-1/+3
* Fixing getting/setting classes and makeArray(RegExp) for Blackberry 4.7. Fixe...John Resig2010-08-231-1/+2
* Made it so that you no longer need to build jQuery in order to run the test s...jeresig2010-03-231-48/+39
* Switch to using String.prototype.trim from String.trim as it's more-widely av...jeresig2010-03-111-2/+3
* Landing a faster trim method. Based upon the work by Travis Hardiman and DBJD...jeresig2010-03-091-4/+23
* More changes to get jQuery in line with JSLint.jeresig2010-03-011-4/+6
* Land some additional tweaks related to running through JSLint.jeresig2010-03-011-6/+6
* Made some code tweaks related to running jQuery through JSLint (thanks to Lor...jeresig2010-03-011-1/+1
* If .attr() is run on no elements undefined should be returned (as should be t...jeresig2010-02-131-1/+1
* Make sure leading whitespace is trimmed for parseJSON. Fixes #6031.jeresig2010-02-131-0/+3
* Remove the need for the internal setArray method, it was only really used by ...jeresig2010-02-131-13/+8
* The context for 'body' should still be document, in this case.jeresig2010-01-291-1/+2
* Landing some minor perf optimization to jQuery().jeresig2010-01-281-4/+12
* Optimize for the case where a fragment-bound element is being injected into o...jeresig2010-01-281-0/+2
* Make empty strings (and other non-string values) simply return null from pars...jeresig2010-01-231-10/+9
* Expose the JSON parsing logic. Fixes #5914.jeresig2010-01-231-0/+22
* Centralize the logic for throwing exceptions. Fixes #5913.jeresig2010-01-231-0/+4
* Simplification of uaMatch, based upon the patch by Ben Alman.Ben Alman2010-01-231-17/+6
* The inArray declaration was accidentally duplicated.John Resig2010-01-151-6/+0
* Fixed typo in logic, also disabled function setters in this case to allow th...jeresig2010-01-121-1/+1
* browser version detection revised for opera >= 10, which was reporting itself...Paul Irish2010-01-121-2/+2
* fixed typo in commentsNeeraj Singh2010-01-121-1/+1
* A first pass at making sure that all the setter function arguments receive th...jeresig2010-01-061-1/+1
* Make sure to do a deep copy on arrays. #5750Filipe Fortes2010-01-071-4/+4
* Merging in jQuery.proxy() branch.jeresig2010-01-051-0/+31
|\
| * Added in jQuery.proxy(obj, name), like the method described in Secrets of the...jeresig2009-12-311-7/+18
| * Moved jQuery.proxy() into core.jeresig2009-12-311-0/+20
* | Rewrite of jQuery.browser to become engine-centric, rather than browser-centr...jeresig2010-01-051-10/+38
* | Rather than declaring empty anonymous functions all around, introduce and use...jeresig2009-12-311-0/+2
|/
* Standardize on using double-quotes for string literals.jeresig2009-12-211-1/+1
* Made a number of spacing changes to bring the code more-inline with the jQuer...jeresig2009-12-211-4/+7
* 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