I have a jQuery UI Accordion set up on my page with multiple h3 items.
For some reason, after I select, say, one in the middle, it locks some of the other elements. There doesn't seem to be a pattern as to which are locked out.
When I hover over them, I don't even seem to have the option to action-click them.
Here's the code for it.
$( "#catalog" ).accordion({
autoHeight : false,
disabled : false});
Any help would be greatly appreciated! :)
EDIT Here's the answer to fixing this issue:
$("#catalog h3").click(function(event){event.stopPropagation();});