Easing Problem with Accordion in jQuery 1.4.2 and UI 1.8.5
So I have am Ajax loading a set of tabs with Accordion's inside the tabs. The tabs are working fine, but the accordion gets an easing error after the first click to switch tabs. Firebug is throwing an error of "
jQuery.easing[specialEasing || defaultEasing] is not a function" on line 5854 in jQuery 1.4.2. has anyone ran across this? here is my code below:
- <!-- ### BEGIN SCRIPT FOR TABS ### -->
- <script type="text/javascript">
- $(document).ready(function(){
- $(function() {
- $("#tabs").tabs();
- });
- <!-- ### END SCRIPT FOR TABS ### -->
- <!-- ### BEGIN SCRIPT FOR ACCORDIONS ### -->
- $(function() {
- $( "#accordion777, #accordion767, #accordion757, #accordion747, #accordion737, #accordion727, #accordion717, #accordion707").accordion({
- collapsible: true
- });
- });
- });
- </script>
- <!-- ### END SCRIPT FOR ACCORDIONS ### -->