Moderator's Note: The link to the pages are in the original post.
Found that when I comment out the majority of the 'expandli' code in the called js file it stops the haccordion from expanding (of course), but also that it stops it from contracting once and stopping to work (behavior on the BAD URL). I thought the collapse code was triggering somehow and causing this but the unwanted mouseover collapse behavior stops when I comment out:
Code:
if (typeof config.$lastexpanded!="undefined") //targetli may be an index, ID string, or DOM reference to LI
config.$lastexpanded.stop().animate({width:config.paneldimensions.peekw}, config.speed) //contract last opened content
$targetli.stop().animate({width:$targetli.data('hpaneloffsetw')}, config.speed) //expand current content
config.$lastexpanded=$targetli
Bookmarks