jquery.git
14 years agojquery core: removed the version.txt newline; please keep it that way, otherwise...
Jörn Zaefferer [Thu, 4 Jun 2009 17:36:23 +0000 (17:36 +0000)]
jquery core: removed the version.txt newline; please keep it that way, otherwise that ant replacement fails, it inserts the file content wherever it finds @VERSION

14 years agojquery fx: Exposing the ticking function
Ariel Flesler [Tue, 2 Jun 2009 02:14:58 +0000 (02:14 +0000)]
jquery fx: Exposing the ticking function

14 years agoReverting accidental test suite corruption from the Sizzle merge.
John Resig [Wed, 20 May 2009 21:59:24 +0000 (21:59 +0000)]
Reverting accidental test suite corruption from the Sizzle merge.

14 years agoRemoved some cases of strict errors.
John Resig [Wed, 20 May 2009 21:52:47 +0000 (21:52 +0000)]
Removed some cases of strict errors.

14 years agoSwitched to using new Function instead of eval for handling JSON parsing (Fixes bug...
John Resig [Wed, 20 May 2009 21:28:48 +0000 (21:28 +0000)]
Switched to using new Function instead of eval for handling JSON parsing (Fixes bug #4680). Added support for JSON.parse, if it exists (Fixes bug #4429).

14 years agoDid some light reordering of the jQuery definition. Moved window and undefined to...
John Resig [Wed, 20 May 2009 21:12:08 +0000 (21:12 +0000)]
Did some light reordering of the jQuery definition. Moved window and undefined to exist in intro/outro.

14 years agofix :hidden and :visible selectors. fixes #4512
Brandon Aaron [Mon, 18 May 2009 15:36:36 +0000 (15:36 +0000)]
fix :hidden and :visible selectors. fixes #4512

14 years agofix for #4183
Brandon Aaron [Sat, 16 May 2009 20:23:58 +0000 (20:23 +0000)]
fix for #4183

14 years agoerror case for an ajax test
Brandon Aaron [Sat, 16 May 2009 20:22:47 +0000 (20:22 +0000)]
error case for an ajax test

14 years agofix remove and empty to work properly in IE when an element with the id of length...
Brandon Aaron [Sat, 16 May 2009 19:32:16 +0000 (19:32 +0000)]
fix remove and empty to work properly in IE when an element with the id of length exists. fixes ajax event hanlders in test suite from firing multiple times because they did not get cleaned up.

14 years agoprevent fx test html from showing in IE
Brandon Aaron [Sat, 16 May 2009 17:39:22 +0000 (17:39 +0000)]
prevent fx test html from showing in IE

14 years agounit tests for setting cellspacing, rowspan, and colspan
Brandon Aaron [Sat, 16 May 2009 15:10:24 +0000 (15:10 +0000)]
unit tests for setting cellspacing, rowspan, and colspan

14 years agofix for #4397
Brandon Aaron [Sat, 16 May 2009 14:45:46 +0000 (14:45 +0000)]
fix for #4397

14 years agotidy up fix for #3981, thanks matt kruse
Brandon Aaron [Thu, 14 May 2009 18:46:58 +0000 (18:46 +0000)]
tidy up fix for #3981, thanks matt kruse

14 years agoopacity is now retrieved from stylesheet in IE. fixes #3981
Brandon Aaron [Thu, 14 May 2009 14:44:31 +0000 (14:44 +0000)]
opacity is now retrieved from stylesheet in IE. fixes #3981

14 years agofix regression in removing live events caused by r6324
Brandon Aaron [Tue, 12 May 2009 15:43:51 +0000 (15:43 +0000)]
fix regression in removing live events caused by r6324

14 years agojquery event: misc change
Ariel Flesler [Sun, 10 May 2009 14:38:35 +0000 (14:38 +0000)]
jquery event: misc change

14 years agounused, left-over code from r6344
Brandon Aaron [Thu, 7 May 2009 18:09:17 +0000 (18:09 +0000)]
unused, left-over code from r6344

14 years agoanother unit test for index method
Brandon Aaron [Thu, 7 May 2009 16:59:35 +0000 (16:59 +0000)]
another unit test for index method

14 years ago.bind() now accepts an optional thisObject as the last argument which is used to...
Brandon Aaron [Thu, 7 May 2009 00:50:28 +0000 (00:50 +0000)]
.bind() now accepts an optional thisObject as the last argument which is used to change the value of this in event callbacks. fixes #3699

14 years agofix for #4234. hover can take one function to use for both enter and leave.
Brandon Aaron [Wed, 6 May 2009 02:17:24 +0000 (02:17 +0000)]
fix for #4234. hover can take one function to use for both enter and leave.

14 years agofix for #3286
Brandon Aaron [Wed, 6 May 2009 01:24:22 +0000 (01:24 +0000)]
fix for #3286

14 years agounit tests for using jQuery events on non-dom elements. fixes #3439. thanks morgan
Brandon Aaron [Mon, 4 May 2009 04:54:09 +0000 (04:54 +0000)]
unit tests for using jQuery events on non-dom elements. fixes #3439. thanks morgan

14 years agofix :hidden selector that was accidentally reverted in previous commit, also fixed...
Brandon Aaron [Mon, 4 May 2009 00:19:57 +0000 (00:19 +0000)]
fix :hidden selector that was accidentally reverted in previous commit, also fixed tests for :hidden selector in IE6

14 years agofix memory leak in IE
Brandon Aaron [Mon, 4 May 2009 00:05:04 +0000 (00:05 +0000)]
fix memory leak in IE

14 years agotestrunner: Updating an orphaned test
Ariel Flesler [Sun, 3 May 2009 17:02:56 +0000 (17:02 +0000)]
testrunner: Updating an orphaned test

14 years agojquery core: $() -> $(document) and $(undefined) -> $([]). Removed a duplicated block.
Ariel Flesler [Sun, 3 May 2009 15:57:25 +0000 (15:57 +0000)]
jquery core: $() -> $(document) and $(undefined) -> $([]). Removed a duplicated block.

14 years agomake sure toggleClass does not delete classNames when forcefully removing classes...
Brandon Aaron [Sat, 2 May 2009 22:35:39 +0000 (22:35 +0000)]
make sure toggleClass does not delete classNames when forcefully removing classes and they are already removed

14 years agotoggleClass can now toggle multiple classNames (space seperated list) and toggle...
Brandon Aaron [Sat, 2 May 2009 21:14:38 +0000 (21:14 +0000)]
toggleClass can now toggle multiple classNames (space seperated list) and toggle the whole className. fixes #3825.

14 years agoactually should be 6330, not 6329
Brandon Aaron [Sat, 2 May 2009 19:23:53 +0000 (19:23 +0000)]
actually should be 6330, not 6329

14 years agoindex now works in reverse when passed a selector or undefined. fixes #3971
Brandon Aaron [Sat, 2 May 2009 19:22:55 +0000 (19:22 +0000)]
index now works in reverse when passed a selector or undefined. fixes #3971

15 years agofix global event triggering that i broke in r6323
Brandon Aaron [Fri, 1 May 2009 00:59:27 +0000 (00:59 +0000)]
fix global event triggering that i broke in r6323

15 years agospecial event refactor left over code
Brandon Aaron [Fri, 1 May 2009 00:36:21 +0000 (00:36 +0000)]
special event refactor left over code

15 years agofix for #2620
Brandon Aaron [Fri, 1 May 2009 00:21:29 +0000 (00:21 +0000)]
fix for #2620

15 years agoonly copy guid from handler to modifiedHandler if it does not already have one
Brandon Aaron [Fri, 1 May 2009 00:02:51 +0000 (00:02 +0000)]
only copy guid from handler to modifiedHandler if it does not already have one

15 years agolive event handlers now receive data from trigger, fixes #4532, thanks nbubna
Brandon Aaron [Thu, 30 Apr 2009 21:50:15 +0000 (21:50 +0000)]
live event handlers now receive data from trigger, fixes #4532, thanks nbubna

15 years agorefactor specialAll into add and remove hooks for existing special events, live now...
Brandon Aaron [Thu, 30 Apr 2009 21:44:25 +0000 (21:44 +0000)]
refactor specialAll into add and remove hooks for existing special events, live now accepts optional data param like bind, fixes #4612 and #4613, thanks to Mike Helgeson

15 years agoevent clean up
Brandon Aaron [Thu, 30 Apr 2009 01:26:09 +0000 (01:26 +0000)]
event clean up

15 years agoenable test for binding events cross-frame that was fixed in r6316
Brandon Aaron [Wed, 29 Apr 2009 22:04:41 +0000 (22:04 +0000)]
enable test for binding events cross-frame that was fixed in r6316

15 years ago.unbind() without any arguments now also unbinds namespaced events. fixes #4609 and...
Brandon Aaron [Wed, 29 Apr 2009 21:45:58 +0000 (21:45 +0000)]
.unbind() without any arguments now also unbinds namespaced events. fixes #4609 and #4241

15 years agofixing a few more memory leaks in IE
Brandon Aaron [Wed, 22 Apr 2009 20:00:30 +0000 (20:00 +0000)]
fixing a few more memory leaks in IE

15 years agooffset returns null for window and document elements. fixes #4136 again
Brandon Aaron [Wed, 22 Apr 2009 05:29:01 +0000 (05:29 +0000)]
offset returns null for window and document elements. fixes #4136 again

15 years agofix for #4216. css now ignores negative numbers for width and height when passed...
Brandon Aaron [Wed, 22 Apr 2009 05:23:53 +0000 (05:23 +0000)]
fix for #4216. css now ignores negative numbers for width and height when passed an object of props and vals.

15 years agofix for #3546. css now works with other windows than just the one it was loaded in.
Brandon Aaron [Wed, 22 Apr 2009 04:39:44 +0000 (04:39 +0000)]
fix for #3546. css now works with other windows than just the one it was loaded in.

15 years agofix for #4268. bind now works with iframe windows. thanks tr4nslator
Brandon Aaron [Wed, 22 Apr 2009 04:18:53 +0000 (04:18 +0000)]
fix for #4268. bind now works with iframe windows. thanks tr4nslator

15 years agofix for #2911
Brandon Aaron [Wed, 22 Apr 2009 02:31:29 +0000 (02:31 +0000)]
fix for #2911

15 years agoremove radix param for parseFloat calls
Brandon Aaron [Wed, 22 Apr 2009 01:34:13 +0000 (01:34 +0000)]
remove radix param for parseFloat calls

15 years agowidth, height, scrollLeft, and scrollTop now work with windows and documents other...
Brandon Aaron [Wed, 22 Apr 2009 00:55:44 +0000 (00:55 +0000)]
width, height, scrollLeft, and scrollTop now work with windows and documents other than just the one it was loaded in (like iframes and popups)

15 years agoclean up offset. #4456 thanks pbcomm
Brandon Aaron [Tue, 21 Apr 2009 19:19:28 +0000 (19:19 +0000)]
clean up offset. #4456 thanks pbcomm

15 years agoactually don't need to null out as much as i thought i did to fix that memory leak
Brandon Aaron [Tue, 21 Apr 2009 19:09:47 +0000 (19:09 +0000)]
actually don't need to null out as much as i thought i did to fix that memory leak

15 years agofixing memory leaks in IE
Brandon Aaron [Tue, 21 Apr 2009 18:46:39 +0000 (18:46 +0000)]
fixing memory leaks in IE

15 years agoAdded explicit module names to the new unit tests.
John Resig [Mon, 20 Apr 2009 17:05:18 +0000 (17:05 +0000)]
Added explicit module names to the new unit tests.

15 years agoUnified the formatting of core.js. === or !== are used wherever appropriate, syntax...
John Resig [Tue, 31 Mar 2009 17:35:20 +0000 (17:35 +0000)]
Unified the formatting of core.js. === or !== are used wherever appropriate, syntax has been normalized, braces are added in all cases, and jQuery() now returns an empty set.

15 years agofix for #4439, offset.initialize can cause the page to jump
Brandon Aaron [Mon, 30 Mar 2009 07:59:31 +0000 (07:59 +0000)]
fix for #4439, offset.initialize can cause the page to jump

15 years agofix for #4378, base tag causes javascript error in IE when loading cross-domain JS...
Brandon Aaron [Fri, 27 Mar 2009 18:20:57 +0000 (18:20 +0000)]
fix for #4378, base tag causes javascript error in IE when loading cross-domain JS via ajax

15 years agoremove trailing spaces
Brandon Aaron [Mon, 23 Mar 2009 01:55:17 +0000 (01:55 +0000)]
remove trailing spaces

15 years agomoving dimension related unit tests to dimensions test module
Brandon Aaron [Sun, 22 Mar 2009 23:25:58 +0000 (23:25 +0000)]
moving dimension related unit tests to dimensions test module

15 years agodecoupling styles retrieval from the attr method
Brandon Aaron [Sun, 22 Mar 2009 23:25:03 +0000 (23:25 +0000)]
decoupling styles retrieval from the attr method

15 years agomoving some vars from manipulations.js to attributes.js
Brandon Aaron [Sun, 22 Mar 2009 15:06:58 +0000 (15:06 +0000)]
moving some vars from manipulations.js to attributes.js

15 years agofix for #4399, removing unused variables
Brandon Aaron [Sun, 22 Mar 2009 04:24:40 +0000 (04:24 +0000)]
fix for #4399, removing unused variables

15 years agofix for #4189, live/die now work with contexts other than just document
Brandon Aaron [Fri, 20 Mar 2009 03:10:07 +0000 (03:10 +0000)]
fix for #4189, live/die now work with contexts other than just document

15 years agoAdded some more information to the unload event cleanup.
John Resig [Thu, 19 Mar 2009 15:16:02 +0000 (15:16 +0000)]
Added some more information to the unload event cleanup.

15 years agofix for #4115
Brandon Aaron [Thu, 19 Mar 2009 03:17:38 +0000 (03:17 +0000)]
fix for #4115

15 years agofix for #4263, better support for nested fixed position elements
Brandon Aaron [Thu, 19 Mar 2009 02:54:57 +0000 (02:54 +0000)]
fix for #4263, better support for nested fixed position elements

15 years agobreaking jquery out into smaller modules. added attributes.js, manipulation.js, and...
Brandon Aaron [Wed, 18 Mar 2009 21:15:38 +0000 (21:15 +0000)]
breaking jquery out into smaller modules. added attributes.js, manipulation.js, and traversing.js

15 years agofix for #4374, gap in :hidden, :visible logic
Brandon Aaron [Wed, 18 Mar 2009 17:55:07 +0000 (17:55 +0000)]
fix for #4374, gap in :hidden, :visible logic

15 years agofix for #4204, fadeTo shows hidden elements before animating
Brandon Aaron [Wed, 18 Mar 2009 14:58:06 +0000 (14:58 +0000)]
fix for #4204, fadeTo shows hidden elements before animating

15 years agofix for #4074, pass context to jQuery.clean for jQuery.clone
Brandon Aaron [Wed, 18 Mar 2009 02:48:32 +0000 (02:48 +0000)]
fix for #4074, pass context to jQuery.clean for jQuery.clone

15 years agofix for #3688, setting type attribute on button causes IE to throw error
Brandon Aaron [Tue, 17 Mar 2009 22:27:25 +0000 (22:27 +0000)]
fix for #3688, setting type attribute on button causes IE to throw error

15 years agousing parseFloat for offset and position methods and removed num helper method
Brandon Aaron [Tue, 17 Mar 2009 21:07:11 +0000 (21:07 +0000)]
using parseFloat for offset and position methods and removed num helper method

15 years agoreturn null when no matched elements exist for offset and position
Brandon Aaron [Tue, 17 Mar 2009 20:50:17 +0000 (20:50 +0000)]
return null when no matched elements exist for offset and position

15 years agosome clean up in the offset method
Brandon Aaron [Tue, 17 Mar 2009 20:43:46 +0000 (20:43 +0000)]
some clean up in the offset method

15 years agoBacked out commit [6260], was causing too many problems. We'll have to bite the bulle...
John Resig [Tue, 17 Mar 2009 20:39:29 +0000 (20:39 +0000)]
Backed out commit [6260], was causing too many problems. We'll have to bite the bullet and assume that the incoming result set has array methods. Un-fixes jQuery bug #4250.

15 years agojquery dimensions: removed redundant code
Ariel Flesler [Fri, 6 Mar 2009 04:23:44 +0000 (04:23 +0000)]
jquery dimensions: removed redundant code

15 years agojquery core: Fixed a typo in a comment, closes #4294.
Ariel Flesler [Thu, 5 Mar 2009 13:36:12 +0000 (13:36 +0000)]
jquery core: Fixed a typo in a comment, closes #4294.

15 years agoRemoved the objectAll check from jQuery.support, was causing problems with broken...
John Resig [Sat, 28 Feb 2009 20:28:45 +0000 (20:28 +0000)]
Removed the objectAll check from jQuery.support, was causing problems with broken ActiveX controls. Fixes bug #4017.

15 years agoSimplified the structure of the .css() and .attr() methods (reducing the number of...
John Resig [Sat, 28 Feb 2009 20:23:48 +0000 (20:23 +0000)]
Simplified the structure of the .css() and .attr() methods (reducing the number of calls). Need to optimize $.css/$.curCSS/$.attr still. Fixes #4269.

15 years agoMoved to a generic solution for copying methods over for querySelectorAll-using browsers.
John Resig [Fri, 27 Feb 2009 15:20:59 +0000 (15:20 +0000)]
Moved to a generic solution for copying methods over for querySelectorAll-using browsers.

15 years agoNo longer use arguments.callee or RegExp (use new RegExp, instead) for ES 3.1 and...
John Resig [Thu, 26 Feb 2009 18:00:41 +0000 (18:00 +0000)]
No longer use arguments.callee or RegExp (use new RegExp, instead) for ES 3.1 and Caja compatibility. Fixes jQuery bug #4251.

15 years agoAs it turns out, the context was being started at a higher root than needed - fixing...
John Resig [Thu, 26 Feb 2009 01:15:54 +0000 (01:15 +0000)]
As it turns out, the context was being started at a higher root than needed - fixing this speeds up > selectors.

15 years agoRemoved the need for the results set to have array methods. Resolves jQuery bug ...
John Resig [Wed, 25 Feb 2009 18:41:29 +0000 (18:41 +0000)]
Removed the need for the results set to have array methods. Resolves jQuery bug #4250.

15 years agoMade some changes to how .find() works, inlined the duplicate check - should change...
John Resig [Wed, 25 Feb 2009 18:29:18 +0000 (18:29 +0000)]
Made some changes to how .find() works, inlined the duplicate check - should change other methods to act similarly. Goes towards fixing #4240.

15 years agoSimplified the isXML function, no need to use recursion.
John Resig [Wed, 25 Feb 2009 15:37:09 +0000 (15:37 +0000)]
Simplified the isXML function, no need to use recursion.

15 years agoExpose the sort/unique code from Sizzle as Sizzle.uniqueSort().
John Resig [Wed, 25 Feb 2009 15:19:08 +0000 (15:19 +0000)]
Expose the sort/unique code from Sizzle as Sizzle.uniqueSort().

15 years agoCut down on some more function calls for jQuery(...). Everything points back to the...
John Resig [Wed, 25 Feb 2009 14:23:25 +0000 (14:23 +0000)]
Cut down on some more function calls for jQuery(...). Everything points back to the same root jQuery(document) object now. Going towards ticket #4240.

15 years agoReduced the number of function calls required for .find() (single element root),...
John Resig [Wed, 25 Feb 2009 04:57:00 +0000 (04:57 +0000)]
Reduced the number of function calls required for .find() (single element root), optimized some calls to jQuery() as well. Goes towards fixing #4240.

15 years agoLanded some improvements for improving the performance of ID-rooted queries (e.g...
John Resig [Wed, 25 Feb 2009 04:08:04 +0000 (04:08 +0000)]
Landed some improvements for improving the performance of ID-rooted queries (e.g. '#foo p'). Fixes jQuery bug #4236.

15 years agoOverhauled the .remove() and .empty() methods to be much more efficient. Fixes bug...
John Resig [Mon, 23 Feb 2009 16:32:45 +0000 (16:32 +0000)]
Overhauled the .remove() and .empty() methods to be much more efficient. Fixes bug #4222.

15 years agojquery event: Fixing event.currentTarget for live().
Ariel Flesler [Mon, 23 Feb 2009 13:27:48 +0000 (13:27 +0000)]
jquery event: Fixing event.currentTarget for live().

15 years agoTagged the Sizzle 1.0 release.
John Resig [Fri, 20 Feb 2009 19:52:38 +0000 (19:52 +0000)]
Tagged the Sizzle 1.0 release.

15 years agoMade sure that .remove now uses multiFilter. Fixes bug #4205.
John Resig [Fri, 20 Feb 2009 19:45:29 +0000 (19:45 +0000)]
Made sure that .remove now uses multiFilter. Fixes bug #4205.

15 years agoBumping the version up to 1.3.3pre.
John Resig [Thu, 19 Feb 2009 22:41:33 +0000 (22:41 +0000)]
Bumping the version up to 1.3.3pre.

15 years agoTagging the 1.3.2 release.
John Resig [Thu, 19 Feb 2009 22:34:21 +0000 (22:34 +0000)]
Tagging the 1.3.2 release.

15 years agoFixed one of the selector tests that was reporting incorrectly in browsers that actua...
John Resig [Thu, 19 Feb 2009 21:35:33 +0000 (21:35 +0000)]
Fixed one of the selector tests that was reporting incorrectly in browsers that actually supported type="search" inputs.

15 years agoDisabled some of the animation tests that were being flaky.
John Resig [Thu, 19 Feb 2009 21:30:25 +0000 (21:30 +0000)]
Disabled some of the animation tests that were being flaky.

15 years agoMissed an other search-related test.
John Resig [Wed, 18 Feb 2009 21:57:46 +0000 (21:57 +0000)]
Missed an other search-related test.

15 years agoFixed some tests that were changed (fixed!) by fixing #3966.
John Resig [Wed, 18 Feb 2009 19:59:51 +0000 (19:59 +0000)]
Fixed some tests that were changed (fixed!) by fixing #3966.

15 years agoMade it so that search input elements are now serialized. Fixes bug #4107.
John Resig [Wed, 18 Feb 2009 19:43:14 +0000 (19:43 +0000)]
Made it so that search input elements are now serialized. Fixes bug #4107.

15 years agoMade it so that appendTo, etc. return the inserted elements (thus using pushStack...
John Resig [Wed, 18 Feb 2009 16:29:43 +0000 (16:29 +0000)]
Made it so that appendTo, etc. return the inserted elements (thus using pushStack, as well). Fixes bugs #3966 and #4182.

15 years agoA speedup for .remove() (which also speeds up .html()). Fixes #4178.
John Resig [Wed, 18 Feb 2009 02:40:55 +0000 (02:40 +0000)]
A speedup for .remove() (which also speeds up .html()). Fixes #4178.