jquery.git
15 years agoBumping the version up to 1.3.2pre.
John Resig [Mon, 16 Feb 2009 18:25:37 +0000 (18:25 +0000)]
Bumping the version up to 1.3.2pre.

15 years agoAdded support for class selectors and class attribute selectors on XML documents...
John Resig [Mon, 16 Feb 2009 18:23:59 +0000 (18:23 +0000)]
Added support for class selectors and class attribute selectors on XML documents. Fixes jQuery bug #4167.

15 years agoFixed an issue with :nth-child selectors embedded in :not() filters. Fixes jQuery...
John Resig [Mon, 16 Feb 2009 17:58:33 +0000 (17:58 +0000)]
Fixed an issue with :nth-child selectors embedded in :not() filters. Fixes jQuery bug #4156.

15 years agoChanged the jQuery hidden/visible selectors to be a little more precise.
John Resig [Mon, 16 Feb 2009 15:55:06 +0000 (15:55 +0000)]
Changed the jQuery hidden/visible selectors to be a little more precise.

15 years agoChange the behavior of how :visible and :hidden work. :hidden is when an element...
John Resig [Mon, 16 Feb 2009 15:52:15 +0000 (15:52 +0000)]
Change the behavior of how :visible and :hidden work. :hidden is when an element is display none, a parent element is display none, or the element has a width of 0. :visible is when the element is not display none and all of its ancesotrs are not display none and its width is larger than 0. Fixes jQuery bugs #1349, #3265, and #3895.

15 years agoFixed a bug with certain + selectors failing (Fixes jQuery bug #4023). Also tweaked...
John Resig [Mon, 16 Feb 2009 15:36:42 +0000 (15:36 +0000)]
Fixed a bug with certain + selectors failing (Fixes jQuery bug #4023). Also tweaked the + and > functions a little bit.

15 years agoFixed the issue where weird characters were being used in ID selectors. Fixes jQuery...
John Resig [Sun, 15 Feb 2009 22:46:54 +0000 (22:46 +0000)]
Fixed the issue where weird characters were being used in ID selectors. Fixes jQuery bug #3913.

15 years agoMake sure that [name=FOO] searches actually have the specified name (IE includes...
John Resig [Sun, 15 Feb 2009 22:33:19 +0000 (22:33 +0000)]
Make sure that [name=FOO] searches actually have the specified name (IE includes elements that have the ID, as well).

15 years agoAdded fixes for two different :not() bugs. One with p:not(p.foo) failing and another...
John Resig [Sun, 15 Feb 2009 21:13:33 +0000 (21:13 +0000)]
Added fixes for two different :not() bugs. One with p:not(p.foo) failing and another with a weird combination of multiple selectors and filters. Fixes jQuery bug #4101.

15 years agoUpdated the copy of jQuery and added some more context tests.
John Resig [Sun, 15 Feb 2009 18:20:01 +0000 (18:20 +0000)]
Updated the copy of jQuery and added some more context tests.

15 years agoAdded some extra methods for making result set merging easier.
John Resig [Sun, 15 Feb 2009 18:09:34 +0000 (18:09 +0000)]
Added some extra methods for making result set merging easier.

15 years agoProvide a graceful failover for [name=foo] queries that are looking for non-input...
John Resig [Sat, 14 Feb 2009 22:24:55 +0000 (22:24 +0000)]
Provide a graceful failover for [name=foo] queries that are looking for non-input/iframe/form elements. Fixes jQuery bug #4081.

15 years agoThe compareDocumentPosition check was extraneous - indexOf works in all the other...
John Resig [Sat, 14 Feb 2009 22:18:02 +0000 (22:18 +0000)]
The compareDocumentPosition check was extraneous - indexOf works in all the other browsers that we need to support.

15 years agoAdded support for sorting in Safari - when querySelectorAll isn't able to be used.
John Resig [Sat, 14 Feb 2009 18:10:45 +0000 (18:10 +0000)]
Added support for sorting in Safari - when querySelectorAll isn't able to be used.

15 years agoDuplication checks are now handled directly in Sizzle, no need to do extra work in...
John Resig [Sat, 14 Feb 2009 17:25:33 +0000 (17:25 +0000)]
Duplication checks are now handled directly in Sizzle, no need to do extra work in .find().

15 years agoDisabled expando selector tests - they don't work in all browsers.
John Resig [Sat, 14 Feb 2009 17:13:08 +0000 (17:13 +0000)]
Disabled expando selector tests - they don't work in all browsers.

15 years agoOops, the sourceIndex of the documentElement in IE is 1, not 0.
John Resig [Sat, 14 Feb 2009 17:06:30 +0000 (17:06 +0000)]
Oops, the sourceIndex of the documentElement in IE is 1, not 0.

15 years agoMake sure that elements are returned in document order - and that the results are...
John Resig [Sat, 14 Feb 2009 16:59:10 +0000 (16:59 +0000)]
Make sure that elements are returned in document order - and that the results are unique.

15 years agoAdded some significant speed-ups to height/width checks, thanks to some code and...
John Resig [Fri, 13 Feb 2009 22:58:57 +0000 (22:58 +0000)]
Added some significant speed-ups to height/width checks, thanks to some code and investigation by Mike Helgeson. Fixes #3082.

15 years agoLanding a fix for a case where the animation timer wasn't getting stopped (thanks...
John Resig [Fri, 13 Feb 2009 16:15:23 +0000 (16:15 +0000)]
Landing a fix for a case where the animation timer wasn't getting stopped (thanks Arrix). Fixes bug #4001.

15 years agoMerging a bunch of changes back from Sizzle, by LosTFx.
John Resig [Tue, 10 Feb 2009 00:28:38 +0000 (00:28 +0000)]
Merging a bunch of changes back from Sizzle, by LosTFx.

15 years agoFixed bubbling of live events (if an inner element handles an event first - and stops...
John Resig [Mon, 9 Feb 2009 23:29:57 +0000 (23:29 +0000)]
Fixed bubbling of live events (if an inner element handles an event first - and stops progatation - then the parent event doesn't encounter the event). Thanks to Irae for the patch. Fixes bug #3980.

15 years agoAdded a performance improvement to .hide()/.show() that helps to prevent constant...
John Resig [Mon, 9 Feb 2009 15:58:12 +0000 (15:58 +0000)]
Added a performance improvement to .hide()/.show() that helps to prevent constant reflows from occurring. Fixes #4038.

15 years agoOptimized the clean() code to no longer use .trim() (speeds up working against long...
John Resig [Mon, 9 Feb 2009 15:41:50 +0000 (15:41 +0000)]
Optimized the clean() code to no longer use .trim() (speeds up working against long HTML in IE). Fixes #4037.

15 years agoRemoved use of .trim() in globalEval, fixes #4036.
John Resig [Mon, 9 Feb 2009 15:35:33 +0000 (15:35 +0000)]
Removed use of .trim() in globalEval, fixes #4036.

15 years agoReworked the attribute selection code to be able to select false-y values - and added...
John Resig [Mon, 9 Feb 2009 15:18:07 +0000 (15:18 +0000)]
Reworked the attribute selection code to be able to select false-y values - and added some tests to verify that they work well against expandos.

15 years agomatch[4] is already saved in check - thanks Balazs.
John Resig [Mon, 9 Feb 2009 15:01:23 +0000 (15:01 +0000)]
match[4] is already saved in check - thanks Balazs.

15 years agoReworked the .clone() function in IE. Fixes jQuery bugs #3500 (jQuery expandos were...
John Resig [Mon, 9 Feb 2009 14:48:15 +0000 (14:48 +0000)]
Reworked the .clone() function in IE. Fixes jQuery bugs #3500 (jQuery 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).

15 years agoAdded a fix for empty attribute selection values. Fixes jQuery bug #3990.
John Resig [Sat, 7 Feb 2009 17:41:30 +0000 (17:41 +0000)]
Added a fix for empty attribute selection values. Fixes jQuery bug #3990.

15 years agoAdding a tweak to prevent layout breaks in the boxModel check on IE 6. Fixes bug...
John Resig [Sat, 7 Feb 2009 17:15:01 +0000 (17:15 +0000)]
Adding a tweak to prevent layout breaks in the boxModel check on IE 6. Fixes bug #4014.

15 years agoStopped a memory leak on getScript calls. Fixes #3962.
John Resig [Sat, 7 Feb 2009 16:57:59 +0000 (16:57 +0000)]
Stopped a memory leak on getScript calls. Fixes #3962.

15 years agoAdded logic for not using getElementsByClassName in different failure states. Fixes...
John Resig [Sat, 7 Feb 2009 16:54:11 +0000 (16:54 +0000)]
Added logic for not using getElementsByClassName in different failure states. Fixes jQuery bugs #4058 and #4042.

15 years agoAdded a fix, suggested by Diego, for IE firing the ready event too late. Fixes bug...
John Resig [Wed, 28 Jan 2009 22:38:00 +0000 (22:38 +0000)]
Added a fix, suggested by Diego, for IE firing the ready event too late. Fixes bug #3988.

15 years agoMade the getAttribute check more explicit - comment nodes don't have getAttribute...
John Resig [Fri, 23 Jan 2009 19:36:59 +0000 (19:36 +0000)]
Made the getAttribute check more explicit - comment nodes don't have getAttribute in XUL documents. Fixes jQuery bug #3870.

15 years agoTagging the 1.3.1 release.
John Resig [Thu, 22 Jan 2009 01:42:16 +0000 (01:42 +0000)]
Tagging the 1.3.1 release.

15 years agoTagging the 1.3.1rc1 release.
John Resig [Thu, 22 Jan 2009 00:30:13 +0000 (00:30 +0000)]
Tagging the 1.3.1rc1 release.

15 years agoBumping Sizzle version to 0.9.3.
John Resig [Thu, 22 Jan 2009 00:29:04 +0000 (00:29 +0000)]
Bumping Sizzle version to 0.9.3.

15 years agoTweaked one of the selector tests.
John Resig [Thu, 22 Jan 2009 00:11:11 +0000 (00:11 +0000)]
Tweaked one of the selector tests.

15 years agoAdded some additional checks to make sure that the correct methods are being used...
John Resig [Wed, 21 Jan 2009 23:56:15 +0000 (23:56 +0000)]
Added some additional checks to make sure that the correct methods are being used in IE on XML documents.

15 years agoBumping the version of Sizzle up to 0.9.2.
John Resig [Wed, 21 Jan 2009 23:33:01 +0000 (23:33 +0000)]
Bumping the version of Sizzle up to 0.9.2.

15 years agoA follow-up for bug #3945. ID selectors don't work in querySelectorAll on XML documen...
John Resig [Wed, 21 Jan 2009 23:31:29 +0000 (23:31 +0000)]
A follow-up for bug #3945. ID selectors don't work in querySelectorAll on XML documents, so we just fall back to the normal engine.

15 years agoMake sure that [name=foo] and #id selectors don't use the native methods on XML docum...
John Resig [Wed, 21 Jan 2009 23:19:30 +0000 (23:19 +0000)]
Make sure that [name=foo] and #id selectors don't use the native methods on XML documents (since id and name attributes may not be defined by a DTD and will return nothing instead. Fixes jQuery bug #3945.

15 years agoNow handle the case where Safari's querySelectorAll fails on uppercase characters...
John Resig [Wed, 21 Jan 2009 22:57:07 +0000 (22:57 +0000)]
Now handle the case where Safari's querySelectorAll fails on uppercase characters in quirks mode. Added a test to check for it and re-worked some of the existing tests to better handle document order issues. Fixes jQuery bug #3840.

15 years agoAfter discussing it with a number of users I've decided to revert the change to ...
John Resig [Wed, 21 Jan 2009 22:36:21 +0000 (22:36 +0000)]
After discussing it with a number of users I've decided to revert the change to [name!=value]. It is now equal to :not([attr!=value]). Attempting to switch it to [attr]:not([attr!=value]) produced some really non-obvious results and confused users. Fixes jQuery bug #3884.

15 years agoCHILD positions were being cached improperly. Tweaked it and added a test to make...
John Resig [Wed, 21 Jan 2009 22:01:50 +0000 (22:01 +0000)]
CHILD positions were being cached improperly. Tweaked it and added a test to make sure it doesn't happen again. Fixes jQuery bug #3924.

15 years agoLanded a fix for timeouts not being aborted properly. Fixes jQuery bug #3874.
John Resig [Wed, 21 Jan 2009 21:46:53 +0000 (21:46 +0000)]
Landed a fix for timeouts not being aborted properly. Fixes jQuery bug #3874.

15 years agoFixed a missing semicolon. Fixes jQuery bug #3927.
John Resig [Tue, 20 Jan 2009 19:58:19 +0000 (19:58 +0000)]
Fixed a missing semicolon. Fixes jQuery bug #3927.

15 years agoAdded a performance improvement to preFilter.CLASS from LosT on the Sizzle.js mailing...
John Resig [Tue, 20 Jan 2009 19:47:15 +0000 (19:47 +0000)]
Added a performance improvement to preFilter.CLASS from LosT on the Sizzle.js mailing list.

15 years agoAdded support for a[name^='foo['] style selectors. Fies jQuery bug #3928.
John Resig [Tue, 20 Jan 2009 19:44:08 +0000 (19:44 +0000)]
Added support for a[name^='foo['] style selectors. Fies jQuery bug #3928.

15 years agoMade sure that .removeClass(null) doesn't throw an exception. Fixes #3847.
John Resig [Tue, 20 Jan 2009 17:33:25 +0000 (17:33 +0000)]
Made sure that .removeClass(null) doesn't throw an exception. Fixes #3847.

15 years agoFocused support of .live(). stopPropagation and stopImmediatePropagation are not...
John Resig [Tue, 20 Jan 2009 17:25:37 +0000 (17:25 +0000)]
Focused support of .live(). stopPropagation and stopImmediatePropagation are not supported - and do not do what the use would expect.

15 years agoRe-worked the logic for where .selector and .context are added for ID selectors ...
John Resig [Tue, 20 Jan 2009 16:00:48 +0000 (16:00 +0000)]
Re-worked the logic for where .selector and .context are added for ID selectors (especially ones that aren't found). Fixes jQuery bug #3833.

15 years agoAdded some missing spaces - helps to calm XHTML error messages in Safari.
John Resig [Tue, 20 Jan 2009 15:46:40 +0000 (15:46 +0000)]
Added some missing spaces - helps to calm XHTML error messages in Safari.

15 years agoAdded two more tweaks for XHTML core tests.
John Resig [Mon, 19 Jan 2009 23:33:46 +0000 (23:33 +0000)]
Added two more tweaks for XHTML core tests.

15 years agoMade some tweaks to the core tests so that they'll run better under XHTML.
John Resig [Mon, 19 Jan 2009 23:22:25 +0000 (23:22 +0000)]
Made some tweaks to the core tests so that they'll run better under XHTML.

15 years agoBrought the logic for handling isXMLDoc over from Sizzle.
John Resig [Mon, 19 Jan 2009 23:17:30 +0000 (23:17 +0000)]
Brought the logic for handling isXMLDoc over from Sizzle.

15 years agoMade sure that a child element exists before the check is done, fixes jQuery bug...
John Resig [Mon, 19 Jan 2009 23:04:03 +0000 (23:04 +0000)]
Made sure that a child element exists before the check is done, fixes jQuery bug #3870.

15 years agojquery event: closes #3843. Some events' timeStamp are wrong on Firefox, we don't...
Ariel Flesler [Mon, 19 Jan 2009 22:20:25 +0000 (22:20 +0000)]
jquery event: closes #3843. Some events' timeStamp are wrong on Firefox, we don't rely on the native value anymore. timeStamp reflects object creation, not last event triggered.

15 years agoRe-worked the logic for handling isXML detection.
John Resig [Mon, 19 Jan 2009 21:57:18 +0000 (21:57 +0000)]
Re-worked the logic for handling isXML detection.

15 years agoLanding a fix for non-link anchor tabIndex (from scott.gonzalez). Fixes ticket #3916.
John Resig [Mon, 19 Jan 2009 21:40:23 +0000 (21:40 +0000)]
Landing a fix for non-link anchor tabIndex (from scott.gonzalez). Fixes ticket #3916.

15 years agoFixed the logic for determining if an XML file is being used. Fixes jQuery bug #3896.
John Resig [Mon, 19 Jan 2009 18:56:02 +0000 (18:56 +0000)]
Fixed the logic for determining if an XML file is being used. Fixes jQuery bug #3896.

15 years agoAdded a way to run the test suite as an XHTML page.
John Resig [Mon, 19 Jan 2009 18:14:51 +0000 (18:14 +0000)]
Added a way to run the test suite as an XHTML page.

15 years agoMerged some recent fixes in from Sizzle.
John Resig [Mon, 19 Jan 2009 18:09:11 +0000 (18:09 +0000)]
Merged some recent fixes in from Sizzle.

15 years agocore: ant build - add Date and Revision to to header (just like make build)
Jörn Zaefferer [Sun, 18 Jan 2009 13:30:09 +0000 (13:30 +0000)]
core: ant build - add Date and Revision to to header (just like make build)

15 years agocore: replaced version.js build script in ant build; wasn't used in make anymore...
Jörn Zaefferer [Sun, 18 Jan 2009 13:04:32 +0000 (13:04 +0000)]
core: replaced version.js build script in ant build; wasn't used in make anymore anyway

15 years agoUpdated License Year, fixes #3871.
John Resig [Sat, 17 Jan 2009 22:25:18 +0000 (22:25 +0000)]
Updated License Year, fixes #3871.

15 years agoMade the IE frameElement check more explicit. Fixes #3880.
John Resig [Sat, 17 Jan 2009 22:04:23 +0000 (22:04 +0000)]
Made the IE frameElement check more explicit. Fixes #3880.

15 years agojquery fx: sync animations were being left on jQuery.timers (double callback)
Ariel Flesler [Wed, 14 Jan 2009 23:09:52 +0000 (23:09 +0000)]
jquery fx: sync animations were being left on jQuery.timers (double callback)
           jQuery.timerId is now a local var and it's not null'ed anymore.

15 years agocore: Ant target to generate openAjaxMetadata; uses http://www.exfer.net/jquery/creat...
Jörn Zaefferer [Wed, 14 Jan 2009 22:43:55 +0000 (22:43 +0000)]
core: Ant target to generate openAjaxMetadata; uses exfer.net/jquery/createjQueryXMLDocs.py to get the data from the wiki, and transforms it using xslt (see build/style.xsl)

15 years agocore: removed newline from version.txt, easier to use it via Ant then
Jörn Zaefferer [Wed, 14 Jan 2009 22:42:55 +0000 (22:42 +0000)]
core: removed newline from version.txt, easier to use it via Ant then

15 years agocore: removed outdated docs target from makefile
Jörn Zaefferer [Wed, 14 Jan 2009 22:42:21 +0000 (22:42 +0000)]
core: removed outdated docs target from makefile

15 years agoUpdating the version to 1.3.1pre.
John Resig [Tue, 13 Jan 2009 17:52:45 +0000 (17:52 +0000)]
Updating the version to 1.3.1pre.

15 years agoTagging the 1.3 release.
John Resig [Tue, 13 Jan 2009 17:50:31 +0000 (17:50 +0000)]
Tagging the 1.3 release.

15 years agoMerged Sizzle changes back into jQuery.
John Resig [Tue, 13 Jan 2009 16:40:19 +0000 (16:40 +0000)]
Merged Sizzle changes back into jQuery.

15 years agoAdded a trailing / in the innerHTML support test to allow it to not
John Resig [Tue, 13 Jan 2009 15:08:11 +0000 (15:08 +0000)]
Added a trailing / in the innerHTML support test to allow it to not
throw an error in XHTML documents. Fixes #3829.

15 years agoUpdated the benchmarking utility to use the Yahoo homepage and a bunch of new selectors.
John Resig [Mon, 12 Jan 2009 18:22:44 +0000 (18:22 +0000)]
Updated the benchmarking utility to use the Yahoo homepage and a bunch of new selectors.

15 years agoMerged in from Sizzle - a change to child filter selector logic.
John Resig [Mon, 12 Jan 2009 16:02:55 +0000 (16:02 +0000)]
Merged in from Sizzle - a change to child filter selector logic.

15 years agoMerged in a fix from Sizzle for :not(:first).
John Resig [Mon, 12 Jan 2009 14:45:58 +0000 (14:45 +0000)]
Merged in a fix from Sizzle for :not(:first).

15 years agoOnly try to wrap the element if it's not disconnected, fixed #3828.
John Resig [Mon, 12 Jan 2009 14:07:14 +0000 (14:07 +0000)]
Only try to wrap the element if it's not disconnected, fixed #3828.

15 years agoFixed an issue with parentNode being accessed in attr() on disconnected DOM elements.
John Resig [Mon, 12 Jan 2009 14:00:35 +0000 (14:00 +0000)]
Fixed an issue with parentNode being accessed in attr() on disconnected DOM elements.

15 years agoUpdating the source version to 1.3rc2.
John Resig [Mon, 12 Jan 2009 02:08:37 +0000 (02:08 +0000)]
Updating the source version to 1.3rc2.

15 years agoTagging the 1.3rc1 release.
John Resig [Mon, 12 Jan 2009 02:05:50 +0000 (02:05 +0000)]
Tagging the 1.3rc1 release.

15 years agoHad to remove the global variable tricks (especially the delete window calls) as...
John Resig [Mon, 12 Jan 2009 01:12:58 +0000 (01:12 +0000)]
Had to remove the global variable tricks (especially the delete window calls) as they cause
exceptions in IE. Also fixed a faulty test that assumed the order of Ajax function callbacks
would be consistent.

15 years agoTweaked the benchmark tests.
John Resig [Mon, 12 Jan 2009 00:24:36 +0000 (00:24 +0000)]
Tweaked the benchmark tests.

15 years agoMade a note about the push method.
John Resig [Mon, 12 Jan 2009 00:24:16 +0000 (00:24 +0000)]
Made a note about the push method.

15 years agoMade the case specific of the type attribute.
John Resig [Sun, 11 Jan 2009 21:22:37 +0000 (21:22 +0000)]
Made the case specific of the type attribute.

15 years agoMerging the latest from Sizzle.
John Resig [Sun, 11 Jan 2009 19:45:04 +0000 (19:45 +0000)]
Merging the latest from Sizzle.

15 years agoPrevented non-script <script> blocks from executing, fixing #3733.
John Resig [Sun, 11 Jan 2009 19:33:01 +0000 (19:33 +0000)]
Prevented non-script <script> blocks from executing, fixing #3733.

15 years agoForgot to change the build.xml file as well.
John Resig [Sun, 11 Jan 2009 16:19:11 +0000 (16:19 +0000)]
Forgot to change the build.xml file as well.

15 years agoFixed boxModel support - is now computed with feature detection, rather than sniffing.
John Resig [Sun, 11 Jan 2009 16:17:20 +0000 (16:17 +0000)]
Fixed boxModel support - is now computed with feature detection, rather than sniffing.

15 years ago.closest() with positional selectors wasn't worked as expected.
John Resig [Sat, 10 Jan 2009 20:30:03 +0000 (20:30 +0000)]
.closest() with positional selectors wasn't worked as expected.

15 years agoLanded a fix for when a DOM element gets accidentally removed by another live event...
John Resig [Sat, 10 Jan 2009 19:57:07 +0000 (19:57 +0000)]
Landed a fix for when a DOM element gets accidentally removed by another live event handler. Thanks to Irae for the patches. Fixed #3820.

15 years agoFixed an issue with script nodes being removed incorrectly, fixes #3737.
John Resig [Sat, 10 Jan 2009 01:07:59 +0000 (01:07 +0000)]
Fixed an issue with script nodes being removed incorrectly, fixes #3737.

15 years agotestrunner: Putting back the global variables used for ajax tests. I added many calls...
Ariel Flesler [Sat, 10 Jan 2009 00:16:48 +0000 (00:16 +0000)]
testrunner: Putting back the global variables used for ajax tests. I added many calls to delete though. The global namespace must be cleaned up before calling start() again.

15 years agotestrunner: Removing every global variable leaked within (and outside) tests. Some...
Ariel Flesler [Fri, 9 Jan 2009 23:49:18 +0000 (23:49 +0000)]
testrunner: Removing every global variable leaked within (and outside) tests. Some were deleted and some saved within the jQuery namespace.

15 years agoDidn't get specific enough with the proxy guid, fixes #3787.
John Resig [Fri, 9 Jan 2009 22:14:48 +0000 (22:14 +0000)]
Didn't get specific enough with the proxy guid, fixes #3787.

15 years agoMade it so that you can bind a single function to multiple .live() selectors. Additio...
John Resig [Fri, 9 Jan 2009 22:10:42 +0000 (22:10 +0000)]
Made it so that you can bind a single function to multiple .live() selectors. Additionally, simplified the proxy code to provide a default proxy function.
Fixes #3787.

15 years agotestrunner: refactored unbind's tests. Including one for #3538, passing since last...
Ariel Flesler [Thu, 8 Jan 2009 22:22:33 +0000 (22:22 +0000)]
testrunner: refactored unbind's tests. Including one for #3538, passing since last commit.

15 years agojquery event: Fixes #3538. unbind on many events was failing.
Ariel Flesler [Thu, 8 Jan 2009 22:21:16 +0000 (22:21 +0000)]
jquery event: Fixes #3538. unbind on many events was failing.

15 years agoSelector state wasn't being passed along on a cloned jQuery object.
John Resig [Thu, 8 Jan 2009 21:41:58 +0000 (21:41 +0000)]
Selector state wasn't being passed along on a cloned jQuery object.