..also before, the animate function accepted an object as callback (with
step and complete functions), not it only accepts a function, how do you
call a function for each step of an animation now?..

..i may have posted this message before, i apologize if i have, 
something weird happened in thunderbird so i'm not sure :)...

spinnach wrote:
> hey,
> 
> sorry about that, it was my fault, i tried to fix the compatibility 
> plugin, but obviously changed it wrong so that's what caused the error.. 
>  with your fix to the compat. plugin everything works ok...
> 
> John Resig wrote:
>> Hi -
>>
>> I fixed the compat. plugin bug that you mentioned, in SVN rev 1010.
>>
>> Can you be more specific about the t.replace bug that you mentioned? I
>> can't seem to locate it anywhere.
>>
>> --John
>>
>> On 1/11/07, spinnach <[EMAIL PROTECTED]> wrote:
>>> ..i have a couple of issues with both jquery 1.1b and the compatibility
>>> plugin.. this is the code from the compatibility plugin:
>>> jQuery.each(["id","title","name","href","src","rel"], function(i){
>>>         jQuery.fn[ i ] = function(h) {
>>>                 return h == undefined ?
>>>                         this.length ? this[0][i] : null :
>>>                         this.attr( i, h );
>>>         };
>>> });
>>>
>>> it should be (i think):
>>>
>>> jQuery.each(["id","title","name","href","src","rel"], function(i, n){
>>>         jQuery.fn[ n ] = function(h) {
>>>                 return h == undefined ?
>>>                         this.length ? this[0][n] : null :
>>>                         this.attr( i, n );
>>>         };
>>> });
>>>
>>> ..also firebug reports t.replace is not a function (t=t.replace(re,""));
>>>   in the find function...
>>>
>>>


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to