John Resig
0fd3648d45
Added in both of Franck's suggested fixes jQuery.class and "foo" + "bar".split(",").
2006-06-22 21:37:18 +00:00
John Resig
6ae392a4e5
Updated global namespaces.
2006-06-22 20:14:41 +00:00
John Resig
3cc1ba05f3
Organized the event functions.
2006-06-22 13:25:21 +00:00
John Resig
07040f8d03
Happy 100th commit, jQuery!
2006-06-22 05:26:26 +00:00
John Resig
c3c706d3f2
Massive update, bugs, filesize, new features - getting ready for 1.0.
2006-06-22 05:23:38 +00:00
John Resig
057381c70d
There was an issue with my table/tbody detection.
2006-06-20 15:42:10 +00:00
John Resig
8f52a2e0e9
Operation "Remove JSLint Changes" has begun.
2006-06-18 01:29:53 +00:00
John Resig
d143f76973
Changed border stuff to borderTopWidth (Ticket #9 )
2006-06-18 01:23:08 +00:00
Gilles van den Hoven
d584a884b6
$.getCSS (see bug #11 )
2006-06-17 09:10:45 +00:00
John Resig
7ebe209b32
Fixed not being able to set the disabled value of an element using .attr(). Ticket #8
2006-06-16 02:25:10 +00:00
John Resig
7eb6a25d5e
Fixed issues with @* and @foo selectors. Ticket #2
2006-06-16 02:18:04 +00:00
John Resig
aabfccf371
Added Klaus' fix for accidental DOM node catches (Ticket #3 ).
2006-06-16 01:51:15 +00:00
John Resig
44590a5d84
You can now append and prepend into a table that doesn't have a tbody.
2006-06-16 00:45:02 +00:00
John Resig
cb3eada739
It's now possible to add <td>s and <th>s to a table, using only HTML.
2006-06-16 00:33:55 +00:00
John Resig
894fc4b280
Removed recent cssText addition, doesn't work as expected.
2006-06-16 00:22:00 +00:00
John Resig
9e27d8d1b4
Changed the window.location hack to be more specific (and documented).
2006-06-16 00:18:15 +00:00
John Resig
d9b1d3436a
$.css() now accounts for borders in addition to padding when calculating the height/width of an element.
2006-06-16 00:09:51 +00:00
John Resig
a70ab6564b
Added checks for the box model.
2006-06-16 00:05:56 +00:00
John Resig
34dd8afb25
Fake trigger events now get passed through $.event.fix() first, to give them an extra layer of authenticity.
2006-06-16 00:02:54 +00:00
Gilles van den Hoven
f9dbb9f73a
changed ID selector code
2006-06-15 10:02:37 +00:00
John Resig
268c82a903
FX Queueing added. Effects no longer mess up causing weird results.
2006-06-15 04:48:52 +00:00
John Resig
dea1925049
Fixed height/width issues that happend due to the box model, in $.css().
2006-06-15 02:27:18 +00:00
John Resig
25f5af1bcb
Reverted back a $.tag change.
2006-06-14 17:31:09 +00:00
John Resig
582075e965
Added Mike Alsup's style/cssText fix and made a quick typeof change.
2006-06-13 04:09:56 +00:00
John Resig
83c7532161
Fixed appending rows to a table.
2006-06-13 02:20:15 +00:00
John Resig
4b6bcb235f
Fixed another bug with retreiving elements by ID.
2006-06-11 18:27:31 +00:00
John Resig
b5256caee6
Fixed an issue with #id expression parsing, an issue with formatting, and removed the try{} block from around event firings.
2006-06-11 18:12:46 +00:00
Gilles van den Hoven
6596108635
changed $.execute back to eval()
2006-06-09 15:36:06 +00:00
Gilles van den Hoven
6656522705
Bugs fixxed:
...
- 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()
2006-06-08 17:31:57 +00:00
Gilles van den Hoven
69ae9aeab0
name == id bug, second attempt
2006-06-06 12:51:44 +00:00
John Resig
6e69be6687
Removed unnecessary instances of === or !==.
2006-06-05 16:19:03 +00:00
Gilles van den Hoven
497bfb7909
-----
...
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]"
2006-05-27 10:18:18 +00:00
John Resig
81fda970ff
Made sure that $.event.handle() always has some form of an event object.
2006-05-17 18:48:23 +00:00
John Resig
c75701a015
Fixed bug with $.attr(), it was attempting to set attribute even if you're attempting to access a value. This was due to the !== null fix.
2006-05-17 18:46:51 +00:00
John Resig
956529c7be
Added some final global variable tweaks - no more namespace leaking!
2006-05-17 03:55:50 +00:00
John Resig
4986837802
Not only does it pass the default JSLint settings, it also no longer leaks *any* global variables!
2006-05-17 02:42:03 +00:00
John Resig
2a6b0ee7c8
Fixed two quick bugs from the JSLint overhaul.
2006-05-16 22:32:15 +00:00
John Resig
d71a85001b
jQuery is now JSLint (jslint.com) compatible, save for the eval stuff. Can't there b
...
e legitamite uses for eval?
2006-05-16 22:15:05 +00:00
John Resig
5f62b671a3
Safari has problems with throw? Commented out for now...
2006-05-12 16:52:18 +00:00
John Resig
facb2324f9
Aieeeeee!! removeClass bug fixed. I'm so dumb.
2006-05-02 19:03:07 +00:00
John Resig
0ababc8fea
Updated licensing info.
2006-04-22 06:24:10 +00:00
John Resig
cd297dd9eb
Extra spaces weren't being removed with removeClass - but I haven't found a good workaround yet.
2006-04-10 06:09:16 +00:00
John Resig
4ab5a88bc4
$().css("foo") now returns the value of $.css("foo") instead of setting to null.
2006-04-09 04:03:36 +00:00
John Resig
e3828d1a48
Updated core code to mirror what's in the web version of latest.
2006-04-06 05:37:08 +00:00
John Resig
11e82e95b6
Added checks to triggerEvent for optional data and element verification. Uses $.apply() now, too.
2006-03-27 07:09:28 +00:00
John Resig
c206df28db
Fixed a bug with append and Prototype 1.5 (via Audun).
2006-03-23 22:29:02 +00:00
John Resig
f0034d64e3
Fixed more formatting/tab problems.
2006-03-23 21:13:20 +00:00
John Resig
130b8a1c03
I've begun the long process of fixing the messed up tab/spaces.
2006-03-23 20:55:47 +00:00
John Resig
193866de0a
Added new parents, parent and siblings functions.
...
Siblings function still needs some work.
It would be nice to have an optional -or-self argument too.
2006-03-22 21:01:00 +00:00
John Resig
37394df837
Added svn:keywords to jQuery core.
2006-03-22 19:52:26 +00:00