I had the same error and after checking the html I noticed I was referencing a parent element by class which no longer existed. Setting the correct class fixed the errors.
On Dec 13 2007, 8:16 pm, SteelSoftware <[EMAIL PROTECTED]> wrote: > I'm also getting the same error when I've upgraded to 1.2.1. The code > I'm running is this: > > $(document).ready(function(){ > $("#reportSelect").change(function(){ > $("#report").SlideOutLeft("slow",function(){ > $.get("./report.inc.php", { > report_id: $("#reportSelect").val() > }, function(response){ > > setTimeout("finishAjax('"+escape(response)+"')", 0); > }); > }); > });}); > > function finishAjax(response) > { > $("#report").html(unescape(response)); > $("#report").SlideInRight("slow"); > > } > > Does anyone have a work-around? Is there a UI function that'll do the > same as slideout? > > Cheers > Steve > > On Dec 7, 6:21 pm, Philippe Rathe <[EMAIL PROTECTED]> wrote: > > > For those having those bugs, are you augmenting the Object.prototype > > anywhere in your code? > > > Because I realize that doing something like: > > > Object.prototype.anyFunctionName = function () { // any code } > > > Were making Interface crash. > > > It the Interface code I realize that it calls my function whatever > > name I gave it, maybe bacause and iteration over all properties of the > > Object properties. > > The only check I see before executing all those functions is it it > > wasn't null. > > > I will start to look over the official jQuery UI plugin as a > > replacement. > > > On Dec 7, 10:56 am, ProxyDev <[EMAIL PROTECTED]> wrote: > > > > I'm having the same issue. If anyone figures this out .. please let > > > us know. > > > > Thanks! :) > > > > On Nov 27, 12:31 am, SimonRaven <[EMAIL PROTECTED]> wrote: > > > > > On Nov 19, 7:40 am, alexanmtz <[EMAIL PROTECTED]> wrote: > > > > > > Im having the same issue, if you fix the problem, please report > > > > > here... > > > > > > I'll do the same when I discovered... > > > > > > On Nov 5, 9:28 pm, Nicolae Namolovan <[EMAIL PROTECTED]> wrote:> I'm > > > > > doing > > > > > > > $('#some').SlideInRight(500); > > > > > > > The effect is working, but after I start to get millions of the same > > > > > > errors into console: > > > > > > >this.options.curAnimhas no properties > > > > > > ../js/jquery-1.2.1.js > > > > > > Line 2833 > > > > > hello, I'm getting that error too, in the svn checkout, line 3023: > > > > > 3018 if ( t > this.options.duration + this.startTime ) { > > > > 3019 this.now = this.end; > > > > 3020 this.pos = this.state = 1; > > > > 3021 this.update(); > > > > 3022 > > > > 3023this.options.curAnim[ this.prop ] = true; > > > > 3024 > > > > 3025 var done = true; > > > > 3026 for ( var i inthis.options.curAnim) > > > > 3027 if (this.options.curAnim[i] !== true ) > > > > 3028 done = false; > > > > > *just* updated about half hour ago, same error, same line i think > > > > even.