Hi Dave, thanks for the feedback, I really appreciate your help. :) Here is my code again:
$('.paginate li > a').livequery('click', function(event) { what = this.rel; $('#' + what).fadeOut('slow', function() { $(this).load(this.href, {'targ': what}, function() { $(this).fadeIn('slow'); }); }); return false; }); When I click .paginate, this error keeps repeating itself over-and- over (via Firebug), like the script is in an endless loop: g has no properties in jquery-1.2.1.pack... (line 11) Also, as you can see (and if it helps), I am using the LiveQuery plugin: <http://brandonaaron.net/docs/livequery/> I can post a link to my test page if you think it would be helpful. :) A billion thanks! Cheers, Micky On Dec 7, 12:51 pm, Dave Methvin <[EMAIL PROTECTED]> wrote: > Your original code looked okay to me.... > > BTW, this is the docs on ajax load, the other is the load event > binding. > > http://docs.jquery.com/Ajax/load > > What error are you getting? The diff with the working version seems to > point to a problem with the fadeOut callback...