Custom Query (13852 matches)
Results (28 - 30 of 13852)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#32 | fixed | .animate() is requring a callback | ||
Description |
Hi all, I have made a simple, but hopefully concise, test page for the animation issue I mentioned earlier (see thread). I assume this must be a bug, or at least I can't find an error on my part no matter how much I recheck my code. Can anyone confirm this as a bug please? http://users.tpg.com.au/j_birch/animation/ Thanks Joel. |
|||
#33 | fixed | "z.o.complete has no properties" line 1292 on .show | ||
Description |
jquery 1.0 alpha i'm hiding some table rows on ready ..
then showing them ..
the show() results in multiple errors in firebug:
which is:
|
|||
#34 | fixed | .text function does not work ok | ||
Description |
The .text function does not work ok on all cases. For example for the dom corresponfing to the xml: <image> <filename>img.jpg</filename> </image> the current implementation of .text function will fail to return the img.jpg text. It works if I replace the line jQuery.fn.text(e[j].childNodes[i].childNodes); with: jQuery.fn.text([e[j].childNodes[i]]); |