summaryrefslogtreecommitdiffstats
path: root/jquery
Commit message (Collapse)AuthorAgeFilesLines
* Getting ready for 1.0a.1.0aJohn Resig2006-07-011-9/+42
|
* Added in both of Franck's suggested fixes jQuery.class and "foo" + ↵John Resig2006-06-221-6/+6
| | | | "bar".split(",").
* Updated global namespaces.John Resig2006-06-221-159/+200
|
* Organized the event functions.John Resig2006-06-221-74/+74
|
* Happy 100th commit, jQuery!John Resig2006-06-221-2/+2
|
* Massive update, bugs, filesize, new features - getting ready for 1.0.John Resig2006-06-221-556/+446
|
* There was an issue with my table/tbody detection.John Resig2006-06-201-4/+7
|
* Operation "Remove JSLint Changes" has begun.John Resig2006-06-181-71/+40
|
* Changed border stuff to borderTopWidth (Ticket #9)John Resig2006-06-181-4/+4
|
* $.getCSS (see bug #11)Gilles van den Hoven2006-06-171-45/+45
|
* Fixed not being able to set the disabled value of an element using .attr(). ↵John Resig2006-06-161-1/+1
| | | | Ticket #8
* Fixed issues with @* and @foo selectors. Ticket #2John Resig2006-06-161-2/+1
|
* Added Klaus' fix for accidental DOM node catches (Ticket #3).John Resig2006-06-161-1/+1
|
* You can now append and prepend into a table that doesn't have a tbody.John Resig2006-06-161-4/+24
|
* It's now possible to add <td>s and <th>s to a table, using only HTML.John Resig2006-06-161-2/+12
|
* Removed recent cssText addition, doesn't work as expected.John Resig2006-06-161-2/+1
|
* Changed the window.location hack to be more specific (and documented).John Resig2006-06-161-1/+6
|
* $.css() now accounts for borders in addition to padding when calculating the ↵John Resig2006-06-161-4/+9
| | | | height/width of an element.
* Added checks for the box model.John Resig2006-06-161-1/+7
|
* Fake trigger events now get passed through $.event.fix() first, to give them ↵John Resig2006-06-161-1/+1
| | | | an extra layer of authenticity.
* changed ID selector codeGilles van den Hoven2006-06-151-1/+1
|
* FX Queueing added. Effects no longer mess up causing weird results.John Resig2006-06-151-2/+1
|
* Fixed height/width issues that happend due to the box model, in $.css().John Resig2006-06-151-17/+27
|
* Reverted back a $.tag change.John Resig2006-06-141-1/+1
|
* Added Mike Alsup's style/cssText fix and made a quick typeof change.John Resig2006-06-131-2/+3
|
* Fixed appending rows to a table.John Resig2006-06-131-0/+8
|
* Fixed another bug with retreiving elements by ID.John Resig2006-06-111-1/+2
|
* Fixed an issue with #id expression parsing, an issue with formatting, and ↵John Resig2006-06-111-19/+29
| | | | removed the try{} block from around event firings.
* changed $.execute back to eval()Gilles van den Hoven2006-06-091-4/+2
|
* Bugs fixxed:Gilles van den Hoven2006-06-081-3/+3
| | | | | | | | | - I've renamed $.eval to $.execute (since $.$$exec is allready there?) - Commited sam's form function - Removed $.fn.formValues() - Removed $.fn.update() - Removed $.fn.serialize()
* name == id bug, second attemptGilles van den Hoven2006-06-061-1/+1
|
* Removed unnecessary instances of === or !==.John Resig2006-06-051-9/+9
|
* -----Gilles van den Hoven2006-05-271-1/+1
| | | | | | | | | | | | | | | | | | | | | fx.js ----- added: $.fn.fadeTo Also changed ' fx.Opacity ' function so $.fn.fadeTo works. For this i changed one line, and one parameter in $.fx.Opactity: "o.io = o.now = 1;" became: "o.io = o.now = (sv || o.cur());" e.g. if there is a start value use it. Else, the current value is used. All calls to "$.fx.Opactiy" which where present in the code have now "1" as third parameter so the code doesn't break. --------- jquery.js --------- Changed line 401 to fix ' name="id" ' bug: '#': "a.id == m[2]" to: '#': "a.getAttribute('id') == m[2]"
* Made sure that $.event.handle() always has some form of an event object.John Resig2006-05-171-2/+5
|
* Fixed bug with $.attr(), it was attempting to set attribute even if you're ↵John Resig2006-05-171-1/+1
| | | | attempting to access a value. This was due to the !== null fix.
* Added some final global variable tweaks - no more namespace leaking!John Resig2006-05-171-0/+3
|
* Not only does it pass the default JSLint settings, it also no longer leaks ↵John Resig2006-05-171-24/+28
| | | | *any* global variables!
* Fixed two quick bugs from the JSLint overhaul.John Resig2006-05-161-2/+2
|
* jQuery is now JSLint (jslint.com) compatible, save for the eval stuff. Can't ↵John Resig2006-05-161-139/+210
| | | | | | | there b e legitamite uses for eval?
* Safari has problems with throw? Commented out for now...John Resig2006-05-121-2/+2
|
* Aieeeeee!! removeClass bug fixed. I'm so dumb.John Resig2006-05-021-3/+1
|
* Updated licensing info.John Resig2006-04-221-4/+6
|
* Extra spaces weren't being removed with removeClass - but I haven't found a ↵John Resig2006-04-101-1/+3
| | | | good workaround yet.
* $().css("foo") now returns the value of $.css("foo") instead of setting to null.John Resig2006-04-091-7/+8
|
* Updated core code to mirror what's in the web version of latest.John Resig2006-04-061-3/+3
|
* Added checks to triggerEvent for optional data and element verification. ↵John Resig2006-03-271-3/+4
| | | | Uses $.apply() now, too.
* Fixed a bug with append and Prototype 1.5 (via Audun).John Resig2006-03-231-2/+2
|
* Fixed more formatting/tab problems.John Resig2006-03-231-73/+71
|
* I've begun the long process of fixing the messed up tab/spaces.John Resig2006-03-231-117/+117
|
* Added new parents, parent and siblings functions.John Resig2006-03-221-16/+22
| | | | | | Siblings function still needs some work. It would be nice to have an optional -or-self argument too.