Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fix width/height to work properly on window/document | Brandon Aaron | 2007-09-17 | 1 | -2/+13 | |
| | ||||||
* | Added fix for bug #1567 - uppercase nodeName test in .add(). | John Resig | 2007-09-15 | 1 | -1/+1 | |
| | ||||||
* | Added .eq(Number) back in - I'm convinced that it's more useful than the ↵ | John Resig | 2007-09-15 | 1 | -0/+4 | |
| | | | | .slice() replacement. lt/gt are still gone, though. | |||||
* | etooled the jQuery constructor, makes it work better for embedding (Bug ↵ | John Resig | 2007-09-15 | 1 | -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 Resig | 2007-09-15 | 1 | -7/+21 | |
| | | | | execution of embedded scripts in IE and Safari. | |||||
* | fix clone(true) for IE | Brandon Aaron | 2007-09-13 | 1 | -4/+10 | |
| | ||||||
* | Made the expando code attach properties to an anonymous object, as opposed ↵ | John Resig | 2007-09-10 | 1 | -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 Resig | 2007-09-09 | 1 | -1/+1 | |
| | ||||||
* | Added an extra check for removing a named cache property - calling it when ↵ | John Resig | 2007-09-09 | 1 | -8/+10 | |
| | | | | it didn't exist caused an exception. | |||||
* | Landing a version of $(document)/$(window) .width()/.height(). It won't win ↵ | John Resig | 2007-09-09 | 1 | -4/+14 | |
| | | | | any awards, but it'll hold us over for this release. | |||||
* | Added .prevAll() and .nextAll() functionality. | John Resig | 2007-09-09 | 1 | -1/+3 | |
| | ||||||
* | So, apparently, I never committed the second half of the new field value ↵ | John Resig | 2007-09-09 | 1 | -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 Resig | 2007-09-08 | 1 | -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 Resig | 2007-09-08 | 1 | -33/+14 | |
| | | | | functionality .clone(true)). | |||||
* | Added .hasClass() (Simply just passes through to .is()). | John Resig | 2007-09-08 | 1 | -0/+4 | |
| | ||||||
* | Finished up some of the reorganization. | John Resig | 2007-09-08 | 1 | -0/+1014 | |