aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* Just added support for Accept headers in Ajax requests - defaults to the ↵John Resig2008-01-141-1/+14
| | | | correct header depending on the type of request that's being performmed. (Bug #1986)
* reverted change for #2114Jörn Zaefferer2008-01-141-2/+2
|
* fix for #2114; refactored tests for bind() to highlight failing ↵Jörn Zaefferer2008-01-141-1348/+1348
| | | | select-change-test
* Tweaked comment for isFunction.John Resig2008-01-121-2/+1
|
* Fixed an edge case in show() where the css says the display should be none. ↵David Serduke2008-01-121-0/+3
| | | | In that case force 'block' so it will actually show.
* Adds support for username and password to $.ajaxYehuda Katz2008-01-071-2/+4
|
* Fixes bug with charCode, bad 'var' and missing semicolonYehuda Katz2007-12-281-3/+3
|
* Fixed #2084 by added embed to the list of elements where it is ok to have ↵David Serduke2007-12-211-1/+1
| | | | self closing xhtml.
* Fixed memory leak in IE with non-native event typesBrandon Aaron2007-12-211-1/+10
|
* Removed check to prevent event from being fixed twice. Unfortunately, in IE ↵Brandon Aaron2007-12-211-7/+0
| | | | this is sometimes necessary with its global event object. Binding both a mousedown and mousemove event is an example.
* Fixed a couple problems found in the test suite. First, IE doesn't like it ↵David Serduke2007-12-201-0/+2
| | | | when text nodes were trying to duplicate their events in clone, so don't do text nodes (that shouldn't have events anyway). Also the fx module was freezing from a recent update that wasn't quite finished.
* Fixing #2081Brandon Aaron2007-12-201-1/+1
|
* Fixed #2080 by removing the check for nodeType != 1. It was put in to limit ↵David Serduke2007-12-201-3/+0
| | | | the queuing to just dom objects (ie not text nodes and comment nodes), but the queuing functionality is being used more broadly than I realized so the check is now removed.
* Fixed #2027 - make sure that cloned elements (within appendTo, etc.) have ↵John Resig2007-12-201-1/+1
| | | | their events cloned by default.
* Changed the $(document).ready() code to try and solve some problems in ↵David Serduke2007-12-201-8/+39
| | | | Safari, Opera, and IE.
* offset: make sure there is a parent node to work on while calculating scroll ↵Brandon Aaron2007-12-191-1/+1
| | | | offsets (#2073)
* offset: make sure border width always gets calculated in pixelsBrandon Aaron2007-12-191-1/+1
|
* Fixed #2077 by adding a var to make it a local variable instead of ↵David Serduke2007-12-191-1/+2
| | | | initializing a global one.
* Short-circuit jQuery.event.fix if it has already fixed the current event object.Brandon Aaron2007-12-191-0/+7
|
* Insure width/height do not return a negative number.Brandon Aaron2007-12-191-1/+1
|
* Second part of the fix for #2071. An empty string "" was being sent to ↵David Serduke2007-12-191-1/+1
| | | | .bind() and when the events were being cleared it went in to an infinite recursive loop till memory was out. The test was !types in the function and changing it to types == undefined fixed the error.
* Changed CRLF end of lines to just LF. Other than that there were no changes ↵David Serduke2007-12-191-536/+536
| | | | in this commit. Try svn diff -x --ignore-eol-style -r 4224:4225 to see that.
* Fixed #2076 where .val() could return an array instead of undefined when the ↵David Serduke2007-12-181-0/+1
| | | | jquery object was empty. The bug was created during the .val() refactoring for the javascript strict FF ticket.
* width and height methods are now working properlyBrandon Aaron2007-12-181-7/+13
|
* Fixed #1887 - trigger fails if extra is not a functionRichard Worth2007-12-181-536/+536
|
* Fixed #2070 by adding a test for !nodeType to isArrayLike so DOM elements ↵David Serduke2007-12-171-4/+2
| | | | like SELECT are not considered array-like (even though they really are).
* Fixed #2069. The ready helper and shortcuts act the same. You can also still ↵Brandon Aaron2007-12-171-40/+78
| | | | bind, unbind and trigger the ready event on the document element but doing so follows the events API unlike the ready helper method.
* Fixed #2062 by adding a check to see if the selector is array-like in .not() ↵David Serduke2007-12-171-1/+4
| | | | before testing it as an array. Otherwise it does a straight comparison during the filter test.
* Fixed #2064Brandon Aaron2007-12-171-1/+1
|
* Fixed #2037 where Opera would mis-state the value of 'display' after an ↵David Serduke2007-12-171-0/+6
| | | | innerHTML was done in some cases.
* Added code to remove the script tag on successful jsonp calls.David Serduke2007-12-171-0/+2
|
* The extra & was getting gobbled, oops.John Resig2007-12-171-2/+2
|
* Added a fix for bug #2020 - if you want to do data: {callback: "?"}, do ↵John Resig2007-12-171-1/+1
| | | | jsonp: "callback" instead.
* Cleaned up mouseenter and mouseleave special eventsBrandon Aaron2007-12-161-20/+12
|
* Changed window.frameElement to window == top because of some access denied ↵David Serduke2007-12-161-1/+1
| | | | errors when the iframe wasn't same origin.
* Added code so an iframe in IE won't count on doScroll to determine if the ↵David Serduke2007-12-161-1/+1
| | | | dom is ready. We will probably have to do more investigation on a better (and consistant) method for inside an iframe in IE.
* Renaming variables to be more consistentBrandon Aaron2007-12-161-37/+37
|
* Fixed #1781 for warnings created on load by FF javascript.options.strict == ↵David Serduke2007-12-165-36/+43
| | | | true.
* Added feature #1934 by allowing script.charset to be set through an optional ↵David Serduke2007-12-151-0/+2
| | | | 'scriptCharset' ajax option.
* new special events api, ready is now a first class event that you can use ↵Brandon Aaron2007-12-151-170/+193
| | | | bind, unbind or the ready helper, two new events: mouseenter and mouseleave, the hover helper method now uses mouseenter and mouseleave, bind and unbind can now take a space sperated list of event types
* Fixed #2046 by forcing the dataType to 'html' in the .load() function.David Serduke2007-12-141-0/+1
|
* Added an extra try block to handle FF 3 x-domain requests. (Bug #1557)John Resig2007-12-141-9/+12
|
* Added some improvements to changes made in [4143] for #1854.John Resig2007-12-132-14/+11
|
* Fixed #1854 by using wizzud's suggestion. The only real difference is the ↵David Serduke2007-12-132-10/+20
| | | | code is only called when there is more than a single selector. So there should be no speed decrease in the current working cases. Only additional functionality for cases that used to fail.
* Getting the width and height of the document now returns the correct value ↵Brandon Aaron2007-12-131-2/+5
| | | | in all browsers. It even works around the scrollWidth == offsetWidth bug in Firefox thanks to wizzud.
* Fixed #1750 by adding a url that starts with "//" and is a dataType "script" ↵David Serduke2007-12-121-1/+1
| | | | will now use a cross domain load the same as urls that start with "http".
* Added more unit tests for offset. Fixed an offset issue relating to table ↵Brandon Aaron2007-12-121-12/+8
| | | | header cells in Opera
* Fixed a bug in clone where it wouldn't work on an XML node in IE. Also ↵David Serduke2007-12-121-1/+1
| | | | added unit test for it.
* Fix #1987 by only doing remote <script> type ajax with GET requests. All ↵David Serduke2007-12-111-2/+2
| | | | other types will be passed on to XMLHttpRequest.
* Greatly reduced the complexity of the width/height methods. This also fixes ↵Brandon Aaron2007-12-111-47/+14
| | | | #2009, #1870, #1796, #1843, #1839, #1818, #1613, #1415 and #1629