aboutsummaryrefslogtreecommitdiffstats
path: root/src/core.js
Commit message (Expand)AuthorAgeFilesLines
* Fixed #2027 - make sure that cloned elements (within appendTo, etc.) have the...John Resig2007-12-201-1/+1
* Insure width/height do not return a negative number.Brandon Aaron2007-12-191-1/+1
* Fixed #2076 where .val() could return an array instead of undefined when the ...David Serduke2007-12-181-0/+1
* width and height methods are now working properlyBrandon Aaron2007-12-181-7/+13
* Fixed #2070 by adding a test for !nodeType to isArrayLike so DOM elements lik...David Serduke2007-12-171-4/+2
* Fixed #2062 by adding a check to see if the selector is array-like in .not() ...David Serduke2007-12-171-1/+4
* Fixed #2037 where Opera would mis-state the value of 'display' after an inner...David Serduke2007-12-171-0/+6
* Fixed #1781 for warnings created on load by FF javascript.options.strict == t...David Serduke2007-12-161-23/+24
* Added some improvements to changes made in [4143] for #1854.John Resig2007-12-131-10/+8
* Fixed #1854 by using wizzud's suggestion. The only real difference is the co...David Serduke2007-12-131-9/+15
* Getting the width and height of the document now returns the correct value in...Brandon Aaron2007-12-131-2/+5
* Fixed a bug in clone where it wouldn't work on an XML node in IE. Also added...David Serduke2007-12-121-1/+1
* Greatly reduced the complexity of the width/height methods. This also fixes #...Brandon Aaron2007-12-111-47/+14
* Fixed #1959 by postponing ALL script evaluations till the html insertion is d...David Serduke2007-12-101-9/+2
* Added a change that triples the speed of all uses of $(...). For example $(DO...John Resig2007-12-101-4/+5
* Fixed clone so that it now properly copies changes to the innerHTML in IE. U...Brandon Aaron2007-12-081-3/+17
* Fixed #1039 and #1733 by going through the core API and making them text node...David Serduke2007-12-071-9/+20
* Fix for #2002Jörn Zaefferer2007-12-061-1/+1
* Fixed #1419 where IE failed with .text() on an XML node. This is part of a s...David Serduke2007-12-051-1/+2
* Fixed #1264. If you read the bug there were many proposed changes. As it tu...David Serduke2007-12-051-2/+2
* Fixed #1763 by checking to see if .createElement() is available on the contex...David Serduke2007-12-041-0/+2
* Fixed #1438 where a filter could be set in IE but not have opacity in it. The...David Serduke2007-12-041-1/+1
* Fixed a problem with changeset [3841] where a function could no longer be .ex...David Serduke2007-11-301-1/+1
* Removed comments and code related to Safari being unable to do a sync global ...David Serduke2007-11-301-1/+0
* Back out one of the changes from the previous commit that wasn't necessary to...David Serduke2007-11-281-1/+1
* Fixed #1908 by testing to make sure it isn't null before checking the nodeType.David Serduke2007-11-281-2/+2
* Fixed #1070 by converting all setAttribute() values to a string which is what...David Serduke2007-11-281-1/+2
* Fixed #1714 by adding a default empty string if the value is falsey.David Serduke2007-11-281-1/+1
* Fixed #1599 as Brandon suggested to ignore negative values to width and heigh...David Serduke2007-11-281-3/+6
* Fixed #1942 but running jQuery.css() before jQuery.curCSS(). This way when t...David Serduke2007-11-271-2/+2
* Added a quick shortcut to improve the speed of $(DOMElement) by over 2x.John Resig2007-11-271-1/+7
* Fix for #1944. Added nodeName and tagName to jQuery.props and tests for maxle...Brandon Aaron2007-11-191-1/+3
* Fixed #1074 where .html() was incorrectly changing the selected value of an o...David Serduke2007-11-171-1/+1
* Changed core.js from CRLF to LF eol style to match the rest of the source fil...David Serduke2007-11-171-1325/+1325
* Fix #1907 where the never-ending loop prevention used a coersion comparison w...David Serduke2007-11-171-2/+8
* Fixed #1095 bug where radio buttons became unchecked during show(). Also adde...David Serduke2007-11-161-1/+1
* Fix for #1893Brandon Aaron2007-11-141-1/+2
* Added a check to make sure a parent node exists in call remove() to avoid err...David Serduke2007-11-051-1/+2
* Added a fix for .noConflict(true) not reverting properly. Also added unit tes...John Resig2007-10-201-4/+4
* Ok, self[...] was BS, switching to window[...], bug #1748.John Resig2007-10-181-1/+1
* Fix for bug #1546 where a deep copy was attempted of DOM elements (which isn'...John Resig2007-10-171-1/+1
* Added a fix for bug #1698, in which injected scripts were executed out of ord...John Resig2007-10-171-19/+31
* Fixed .val(String) for select elements (#1760) [Thanks Sam]Brandon Aaron2007-10-121-1/+1
* Fix for #1779Jörn Zaefferer2007-10-121-1305/+1305
* Fixes memory leaks relating to events in IE with page unload and with jQuery ...Brandon Aaron2007-10-061-6/+9
* Fix regression in add and append in IE after revision 3463Brandon Aaron2007-10-061-5/+10
* A fix for bug #1443, where globalEval occurred asynchronously in Safari 2, pr...John Resig2007-10-011-8/+12
* Completely overhauled the syntax of core - re-worked variable names, formatti...John Resig2007-09-231-423/+575
* Fixed #1474, setting selectedIndexBrandon Aaron2007-09-181-1/+2
* Use document.compatMode for quirks test in width/height methodBrandon Aaron2007-09-181-1/+1