I have have the following code,
$("#nav").accordion({
event: "mouseover",
autoHeight: false,
collapsible: false,
animate: 'bounceslide',
<?php
// Checks for active page and opens the related tab
$uri = $_SERVER['REQUEST_URI'];
switch($uri):
case '/anti-social-behavior-logging':
echo('active: 0,'); break;
case '/telehealth-services':
echo('active: 1,'); break;
case '/telecare-services':
echo('active: 2,'); break;
case '/lone-worker-safety-services':
echo('active: 3,'); break;
case '/repairs-reporting-services':
echo('active: 4,'); break;
default:
echo('active: 5,');
endswitch;
?>
});
However I get the following error,
Uncaught TypeError: Object # has no method 'bounceslide'
Why is this? You can see the problem at http://www.astraline.co.uk - As far as I am aware I have all the libraries I need for this to work.