accordion fails

accordion fails

Hi,

I have an accordion set up as follows:

  1. <div class="fx-accordion" >
  2.         <h3><a href="#">Question 1</a></h3>
  3.         <div>
  4.               Answer 1
  5.         </div>
  6. </div>

I'm then using livequery to initialise these accordions (they come in through ajax!) as follows:

  1. jQuery('.fx-accordion').livequery(function() { 
  2.         jQuery(this).accordion();
  3.     } );

The accordion seems to be generating perfectly well.  However - whenever I click an item to expand, I'm getting the following error:

jQuery.easing[specialEasing || defaultEasing] is not a function

The error goes back to line number 5854 of jquery.js.

 this.pos = jQuery.easing[specialEasing || defaultEasing](this.state, n, 0, 1, this.options.duration);

I'm running the latest versions of jQuery and UI published on Google CDN.

Any idea anyone?

 

If you would like to reproduce, go to http://www.flexin.be/site/en/department/contact/1.html?_rw=4&_s=0&#

In the question box, enter "control panel test question" and wait 2 seconds; you will be presented with FAQ entries there which are being presented in an accordion :)

Thanks so much for your help, guys!