aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Make sure that we're doing proper focus bubble testing. Also simplified the ↵John Resig2009-12-062-24/+15
| | | | logic for the IE focusin/focusout handling.
* Use the isXML function from Sizzle.John Resig2009-12-062-8/+1
|
* Use the getText utility function provided by Sizzle.John Resig2009-12-062-14/+2
|
* Added in support for injecting area elements into map elements. Fixes #4484.John Resig2009-12-062-1/+6
|
* Added in support for $.ajax jsonpCallback (allowing you to specify the name ↵John Resig2009-12-062-4/+34
| | | | of the callback method - and allowing you to avoid skipping the cache). Fixes #4206.
* Adding in cross-browser onbeforeunload support. Fixes #4106.John Resig2009-12-061-0/+17
|
* Merge branch 'master' of git@github.com:jquery/jqueryJohn Resig2009-12-063-4/+7
|\
| * Fix regexp for $.trim so it doesn't whack embedded spaces.Dave Methvin2009-12-061-1/+1
| |
| * Fix for #4011, crash when two text nodes are appended in IE.Dave Methvin2009-12-062-3/+6
| |
* | Split the queue code out from data.js into a dedicated queue.js file (also ↵John Resig2009-12-068-242/+230
| | | | | | | | split tests accordingly).
* | Renamed isObjectLiteral to isPlainObject (makes more sense, per the ↵John Resig2009-12-062-11/+11
|/ | | | suggestion of Michael Geary).
* Make sure that animated show resets the display correctly. Fixes #5130.jeresig2009-12-052-1/+40
|
* Fix inverted 'orig' and 'fix' event in mouseenter/mouseleave special events.lrbabe2009-12-061-5/+5
|
* added semicolons to end of 2 statements (and fixed a misspelled word in comment)Karl Swedberg2009-12-061-2/+2
|
* Adding in an extra check, per the comments in ↵jeresig2009-12-051-1/+1
| | | | 25b0ba9f9612583033b902a0e40345463a3a71d0.
* Make sure that the previous element is removed from the page before the next ↵jeresig2009-12-052-2/+19
| | | | is inserted, in replaceWith. Using a variation of the patch by snaury. Fixes #2697.
* Made sure that css() in IE handles negative non-px values correctly. Fixes ↵jeresig2009-12-052-3/+6
| | | | #3331.
* Minor syntactical changes to :visible and :hidden.jeresig2009-12-051-8/+8
|
* Made sure that a null speed doesn't get passed around. Patch from daltonlp. ↵jeresig2009-12-051-1/+1
| | | | Fixes #5557.
* Make sure that width or height don't animate to a negative value. Fixes #3881.John Resig2009-12-052-1/+10
|
* Retooled the native triggering code, simplifying it.John Resig2009-12-041-5/+7
|
* Allow the user to explicitly set a content-type header even when there's no ↵John Resig2009-12-041-5/+3
| | | | data being sent to the server. Fixes #1900.
* Fixes a bug I introducedYehuda Katz2009-12-041-1/+1
|
* Added a test for bug 1095 for animations (animations don't clear check boxes)Yehuda Katz2009-12-041-0/+15
|
* Updating the source version to 1.4a2pre.jeresig2009-12-041-1/+1
|
* Tagging the 1.4a1 release.1.4a1jeresig2009-12-041-1/+1
|
* Switched to using slice instead of join to get the correct results.jeresig2009-12-041-4/+3
|
* Landing Ben Alman's patch to add nextUntil, prevUntil, and parentsUntil. ↵Ben Alman2009-12-043-11/+98
| | | | Also adds some tests for prevAll and nextAll, and fixes an test edge case in parents.
* Added in the .delay() method for delaying the execution of queued functions ↵jeresig2009-12-042-0/+30
| | | | and animations.
* Adding in support for bubbling submit and change events, thanks to the patch ↵Justin Meyer2009-12-044-58/+409
| | | | by Justin Meyer. Includes a delegation test suite for manually testing to see if the events work as intended.
* Minor syntax changes to the winnow function.jeresig2009-12-031-5/+10
|
* Use now() in support.js instead of getTime.jeresig2009-12-031-1/+1
|
* Tweaked a CSS test to handle differences in font-size % support in browsers.jeresig2009-12-031-1/+8
|
* Removed broken hidden/visible test.jeresig2009-12-031-7/+4
|
* Removing unnecessary parens from :hidden.jeresig2009-12-031-3/+4
|
* Re-arranged many of the selector tests, breaking them into smaller test ↵jeresig2009-12-031-80/+86
| | | | groups and into more-appropriate sections.
* Just restore window.JSON in the getJSON test, don't try to delete the value.jeresig2009-12-031-6/+3
|
* Landed the rest of the liveHandler rewrite that takes advantage of the new ↵jeresig2009-12-031-8/+3
| | | | closest multi-selector signature (sorry, accidentally committed some of it in the wrong commit: 4daae7a79f43815935a2890d16904c5a052717f3).
* Re-worked the closest no-duplicate-selector code again to be more efficient.jeresig2009-12-031-15/+12
|
* Prevent duplicate selectors from having to match in closest.jeresig2009-12-031-4/+11
|
* No need to do the closest match if no selectors are passed in.jeresig2009-12-032-17/+34
|
* Added in the new .closest(Array) method, will be used to improve the ↵jeresig2009-12-022-9/+42
| | | | performance of live filtering.
* Extracted the logic for copying events from one jQuery set to another, makes ↵jeresig2009-12-021-15/+20
| | | | it easier to work with disconnected DOM nodes.
* Fixed logic error in html method - support.leadingWhitespace shouldn't have ↵jeresig2009-12-021-1/+1
| | | | been negated.
* Removed debug statements from manipulation tests, was causing errors in IE.jeresig2009-12-021-4/+0
|
* Make sure that a DOM node isn't getting passed through (as is the case in ↵jeresig2009-12-021-1/+1
| | | | IE, it has a toString of [object Object].
* Added some isObjectLiteral tests.jeresig2009-12-021-0/+45
|
* Adding a test that a new option can be selected with val(N)Yehuda Katz2009-12-011-1/+5
|
* Fix css("opacity") to not clobber other filters in IE. Closes #4707.Yehuda Katz2009-12-012-8/+20
|
* Updated the Rakefile to use the correct init code.jeresig2009-11-301-1/+8
|