aboutsummaryrefslogtreecommitdiffstats
path: root/src/core.js
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix width/height to work properly on window/documentBrandon Aaron2007-09-171-2/+13
|
* Added fix for bug #1567 - uppercase nodeName test in .add().John Resig2007-09-151-1/+1
|
* Added .eq(Number) back in - I'm convinced that it's more useful than the ↵John Resig2007-09-151-0/+4
| | | | .slice() replacement. lt/gt are still gone, though.
* etooled the jQuery constructor, makes it work better for embedding (Bug ↵John Resig2007-09-151-20/+19
| | | | #1585). Also took the opportunity to do some renaming in the constructor and init.
* Fixed bug #1594, #1565, #1598 - all of which were concerning the improper ↵John Resig2007-09-151-7/+21
| | | | execution of embedded scripts in IE and Safari.
* fix clone(true) for IEBrandon Aaron2007-09-131-4/+10
|
* Made the expando code attach properties to an anonymous object, as opposed ↵John Resig2007-09-101-2/+7
| | | | to the global window object, and fixed a bug where .removeAttribute() tried to fire even if it didn't exist.
* Fixed spelling mistake.John Resig2007-09-091-1/+1
|
* Added an extra check for removing a named cache property - calling it when ↵John Resig2007-09-091-8/+10
| | | | it didn't exist caused an exception.
* Landing a version of $(document)/$(window) .width()/.height(). It won't win ↵John Resig2007-09-091-4/+14
| | | | any awards, but it'll hold us over for this release.
* Added .prevAll() and .nextAll() functionality.John Resig2007-09-091-1/+3
|
* So, apparently, I never committed the second half of the new field value ↵John Resig2007-09-091-13/+42
| | | | code. This allows you to set values on groups of checkboxes, radio buttons, and selects.
* Landing the new expando management code. Completely overhauls how data is ↵John Resig2007-09-081-8/+67
| | | | | | | | | | | | | | | | | | | | | | | associated with elements. Plugins will be most interested in: - jQuery.data(elem) -> Unique ID for the element - jQuery.data(elem, name) -> Named data store for the element - jQuery.data(elem, name, value) -> Saves a value to the named data store - jQuery.removeData(elem) -> Remove the expando and the complete data store - jQuery.removeData(elem, name) -> Removes just this one named data store jQuery's .remove() and .empty() automatically clean up after themselves. Once an element leaves a DOM document their events are no longer intact. Thus, statements like so: {{{ $("#foo").remove().appendTo("#bar"); }}} should be written like so: {{{ $("#foo").appendTo("#bar"); }}} in order to avoid losing the bound events.
* Landing the .clone() rewrite by Brandon (also includes the new event cloning ↵John Resig2007-09-081-33/+14
| | | | functionality .clone(true)).
* Added .hasClass() (Simply just passes through to .is()).John Resig2007-09-081-0/+4
|
* Finished up some of the reorganization.John Resig2007-09-081-0/+1014