aboutsummaryrefslogtreecommitdiffstats
path: root/src/jquery/jquery.js
Commit message (Collapse)AuthorAgeFilesLines
* (no commit message)Brandon Aaron2007-02-101-3/+2
|
* Get actual values for attributes in IE and fix #910 so that it does not ↵Brandon Aaron2007-02-091-2/+4
| | | | crash safari
* Fix for #910, for real this time.Brandon Aaron2007-02-081-1/+1
|
* Fix for #910Brandon Aaron2007-02-071-1/+1
|
* Fix for #745Brandon Aaron2007-02-071-3/+3
|
* Fix for #907Jörn Zaefferer2007-02-051-2/+10
|
* Small optimization to jQuery.prop, saving 2 or 3 bytesJörn Zaefferer2007-02-031-4/+3
|
* Fixed #874Jörn Zaefferer2007-01-311-1/+1
|
* Fix for #883Jörn Zaefferer2007-01-311-1/+1
|
* Removed unnecessary commentJörn Zaefferer2007-01-231-1/+0
|
* Fix/test for #861Jörn Zaefferer2007-01-231-3/+4
|
* Removed another log statement; fixed add(Array) for IE (IE reports ↵Jörn Zaefferer2007-01-231-1/+1
| | | | form.elements.nodeName == "FORM")
* Removed log statementJörn Zaefferer2007-01-231-1/+1
|
* Fixed not(jQuery) (need. more. tests.)Jörn Zaefferer2007-01-231-8/+8
|
* Added in jQuery.nodeName() to simplify checking nodeName constantly.John Resig2007-01-221-3/+7
|
* Fixed this issue: $("<div>foo\nbar</div>");John Resig2007-01-221-1/+2
|
* Removed some extra code that ifFunction deprecated.John Resig2007-01-221-2/+1
|
* Added new function-testing code that is completely cross-browser compatible.John Resig2007-01-221-1/+4
|
* Fixed issue with .add()ing individual elements - and with .add()ing form ↵John Resig2007-01-201-1/+4
| | | | elements (since they report a .length.
* Added a fix for $("#noexist").attr("id") breaking.John Resig2007-01-201-1/+1
|
* prop fix takes also "line-height" into account (see #812)Jörn Zaefferer2007-01-171-1/+1
|
* prop fix takes also "zoom" into account (see #803)Jörn Zaefferer2007-01-171-1/+1
|
* Fix for #806Jörn Zaefferer2007-01-171-1/+1
|
* Reverted optimization to jQuery function, fixing broken jQuery-as-context, ↵Jörn Zaefferer2007-01-171-6/+6
| | | | added test (fix for #804)
* Fixed typoooo.Jörn Zaefferer2007-01-171-1/+1
|
* Improved docs for $.merge, clearly stating that the first argument is altered.Jörn Zaefferer2007-01-171-6/+7
|
* Fix for #812Jörn Zaefferer2007-01-161-3/+6
|
* Enhanced attr(String, Function) to pass through index of current elementJörn Zaefferer2007-01-161-4/+10
|
* Removed useless and misleading exampleJörn Zaefferer2007-01-141-5/+0
|
* 2006 -> 2007.John Resig2007-01-141-1/+1
|
* Made a slight adjustment to $("expr") to make it faster.John Resig2007-01-141-6/+6
|
* Converted a lot of for loops to use jQuery.each() instead.John Resig2007-01-141-24/+21
|
* Fixed the issues with .text() working incorrectly.John Resig2007-01-141-6/+14
|
* Merged in some wiki fixes into the main docs.John Resig2007-01-141-6/+6
|
* Added a fix, and tests, for appending empty sets of elements/strings.John Resig2007-01-141-0/+3
|
* Fixed a few docsJörn Zaefferer2007-01-141-12/+11
|
* Fix wrong type check in jQuery.propJörn Zaefferer2007-01-141-1/+1
|
* Removed a bunch more bytes from the total file size.John Resig2007-01-141-13/+13
|
* Added in jQuery.isFunction().John Resig2007-01-141-3/+7
|
* Fixed that stupid type once moreJörn Zaefferer2007-01-111-1/+1
|
* Added a fix for .append( Number )John Resig2007-01-111-0/+3
|
* Added a fix for .html("") not working correctly.John Resig2007-01-111-0/+2
|
* Fixed .not([]) not working properly.John Resig2007-01-111-1/+1
|
* Fixed missing typoJörn Zaefferer2007-01-111-1/+1
|
* Fixed bug with .text(), it only returned the text for the first element.John Resig2007-01-111-1/+1
|
* Fixed the Safari crashing bug. So much hate.John Resig2007-01-111-2/+2
|
* Fixed docs for .clone(Boolean).John Resig2007-01-101-0/+1
|
* Modified ready to event to pass jQuery object, allowing users to avoid the ↵Jörn Zaefferer2007-01-101-0/+8
| | | | ugly custom alias pattern, added examples to both ready(Function) and $(Function)
* Added support .css("left",30). Fixed up the multiFilter code.John Resig2007-01-101-6/+18
|
* Lots of improvements. Added support for .not( jQuery("...") ) and support ↵John Resig2007-01-101-22/+40
| | | | for multi filters: .filter("foo,bar") .parent("div, .class"), etc.