Anyone else having issues with WordPress 3.6 and the Accordion UI?
I have a website that was working just fine till I updated it to WordPress 3.6. The accordion menu stopped working. No errors.
Enqueue
wp_register_script('accordion',get_template_directory_uri().'/js/accordion.js', array('jquery', 'jquery-ui-accordion'), 1.0, true);
My JS
jQuery('#accordion').accordion({
heightStyle: 'content',
collapsible: true,
active: false
});
Nothing happens at all when I click on the accordion links. Everything loads, correctly. No errors. I heard about issues with WordPress 3.6 and jQuery UI – but have not been able to find anyone with the same issue.