aboutsummaryrefslogtreecommitdiffstats
path: root/src/core.js
Commit message (Collapse)AuthorAgeFilesLines
...
* Optimized jQuery(Element) to not call jQuery() twice.John Resig2009-07-111-4/+7
|
* jquery core: Closes #2827. jQuery.each iterates over functionsAriel Flesler2009-06-201-3/+5
|
* Did some light reordering of the jQuery definition. Moved window and ↵John Resig2009-05-201-15/+10
| | | | undefined to exist in intro/outro.
* jquery core: $() -> $(document) and $(undefined) -> $([]). Removed a ↵Ariel Flesler2009-05-031-7/+1
| | | | duplicated block.
* index now works in reverse when passed a selector or undefined. fixes #3971Brandon Aaron2009-05-021-3/+9
|
* Unified the formatting of core.js. === or !== are used wherever appropriate, ↵John Resig2009-03-311-99/+141
| | | | syntax has been normalized, braces are added in all cases, and jQuery() now returns an empty set.
* remove trailing spacesBrandon Aaron2009-03-231-2/+2
|
* breaking jquery out into smaller modules. added attributes.js, ↵Brandon Aaron2009-03-181-851/+5
| | | | manipulation.js, and traversing.js
* fix for #4074, pass context to jQuery.clean for jQuery.cloneBrandon Aaron2009-03-181-3/+3
|
* fix for #3688, setting type attribute on button causes IE to throw errorBrandon Aaron2009-03-171-1/+1
|
* using parseFloat for offset and position methods and removed num helper methodBrandon Aaron2009-03-171-5/+0
|
* Backed out commit [6260], was causing too many problems. We'll have to bite ↵John Resig2009-03-171-3/+8
| | | | the bullet and assume that the incoming result set has array methods. Un-fixes jQuery bug #4250.
* jquery core: Fixed a typo in a comment, closes #4294.Ariel Flesler2009-03-051-1/+1
|
* Simplified the structure of the .css() and .attr() methods (reducing the ↵John Resig2009-02-281-27/+29
| | | | number of calls). Need to optimize $.css/$.curCSS/$.attr still. Fixes #4269.
* Removed the need for the results set to have array methods. Resolves jQuery ↵John Resig2009-02-251-8/+3
| | | | bug #4250.
* Made some changes to how .find() works, inlined the duplicate check - should ↵John Resig2009-02-251-10/+18
| | | | change other methods to act similarly. Goes towards fixing #4240.
* Simplified the isXML function, no need to use recursion.John Resig2009-02-251-3/+6
|
* Cut down on some more function calls for jQuery(...). Everything points back ↵John Resig2009-02-251-21/+18
| | | | to the same root jQuery(document) object now. Going towards ticket #4240.
* Reduced the number of function calls required for .find() (single element ↵John Resig2009-02-251-9/+27
| | | | root), optimized some calls to jQuery() as well. Goes towards fixing #4240.
* Overhauled the .remove() and .empty() methods to be much more efficient. ↵John Resig2009-02-231-8/+21
| | | | Fixes bug #4222.
* Made sure that .remove now uses multiFilter. Fixes bug #4205.John Resig2009-02-201-1/+1
|
* Made it so that appendTo, etc. return the inserted elements (thus using ↵John Resig2009-02-181-10/+13
| | | | pushStack, as well). Fixes bugs #3966 and #4182.
* A speedup for .remove() (which also speeds up .html()). Fixes #4178.John Resig2009-02-181-1/+1
|
* Added some extra methods for making result set merging easier.John Resig2009-02-151-1/+3
|
* Added support for sorting in Safari - when querySelectorAll isn't able to be ↵John Resig2009-02-141-2/+4
| | | | used.
* Duplication checks are now handled directly in Sizzle, no need to do extra ↵John Resig2009-02-141-7/+3
| | | | work in .find().
* Added some significant speed-ups to height/width checks, thanks to some code ↵John Resig2009-02-131-7/+13
| | | | and investigation by Mike Helgeson. Fixes #3082.
* Fixed bubbling of live events (if an inner element handles an event first - ↵John Resig2009-02-091-2/+6
| | | | and stops progatation - then the parent event doesn't encounter the event). Thanks to Irae for the patch. Fixes bug #3980.
* Optimized the clean() code to no longer use .trim() (speeds up working ↵John Resig2009-02-091-4/+5
| | | | against long HTML in IE). Fixes #4037.
* Removed use of .trim() in globalEval, fixes #4036.John Resig2009-02-091-3/+1
|
* Reworked the .clone() function in IE. Fixes jQuery bugs #3500 (jQuery ↵John Resig2009-02-091-20/+24
| | | | expandos were causing extra elements to appear from using .html() cloning), #3254 (Mis-match in clone result length causes problem), and #2845 (Cloning an <object/> causes exceptions to be thrown).
* Made sure that .removeClass(null) doesn't throw an exception. Fixes #3847.John Resig2009-01-201-1/+1
|
* Re-worked the logic for where .selector and .context are added for ID ↵John Resig2009-01-201-14/+10
| | | | selectors (especially ones that aren't found). Fixes jQuery bug #3833.
* Brought the logic for handling isXMLDoc over from Sizzle.John Resig2009-01-191-2/+2
|
* Landing a fix for non-link anchor tabIndex (from scott.gonzalez). Fixes ↵John Resig2009-01-191-2/+4
| | | | ticket #3916.
* Only try to wrap the element if it's not disconnected, fixed #3828.John Resig2009-01-121-13/+15
|
* Fixed an issue with parentNode being accessed in attr() on disconnected DOM ↵John Resig2009-01-121-1/+1
| | | | elements.
* Made a note about the push method.John Resig2009-01-121-0/+2
|
* Made the case specific of the type attribute.John Resig2009-01-111-1/+1
|
* Prevented non-script <script> blocks from executing, fixing #3733.John Resig2009-01-111-1/+1
|
* Fixed boxModel support - is now computed with feature detection, rather than ↵John Resig2009-01-111-3/+0
| | | | sniffing.
* .closest() with positional selectors wasn't worked as expected.John Resig2009-01-101-1/+3
|
* Fixed an issue with script nodes being removed incorrectly, fixes #3737.John Resig2009-01-101-1/+1
|
* Selector state wasn't being passed along on a cloned jQuery object.John Resig2009-01-081-0/+6
|
* Fixed tabindex normalization so that elements that natively support tabbing, ↵Scott González2009-01-071-4/+8
| | | | | | but don't have a tabindex explicitly set return 0 instead of undefined. Removed jQuery.support.tabindex since we're only normalizing non-XML right now and all browsers support tabIndex for HTML documents.
* Landed a number of improvements to the selector engine. Results are ↵John Resig2009-01-071-2/+7
| | | | | | | auto-merged onto the jQuery object, class filtering is now done inline, and not filtering is more efficient.
* Made the .unqiue() within .find() optional (speeds up calls).John Resig2009-01-061-6/+10
|
* Switched back to the old style of running embedded scripts (users who have ↵John Resig2009-01-051-16/+5
| | | | | | | duplicate runs will have to deal with it another way).
* Make sure that if no ownerDocument is available that we fall back to the ↵John Resig2009-01-051-3/+3
| | | | node itself (likely the document).
* Landed cross-browser support for tabIndex, by Scott, closes ticket #3649.John Resig2009-01-051-0/+7
|