When using Colorbox and KenBurner, SuckerFish Nav stops working despite them all referencing the same jquery.js.
I have the latest jquery.js locally on my box where I have Colorbox Lightbox and KenBurner Slider working together but SuckerFish Nav stops working.
I have a SuckerFish Menu as an include (.asp ) and within in it I call jquery.js.
Odd thing is if I leave the aforementioned within the that include page, the SuckerFish Menu works BUT Colorbox and KenBurner stop. However, when I remove that reference to jquery.js in that include, Colorbox and KenBurner work but SuperFish stops working in the sense that the divs do not open when the menu item is selected.
- <script type="text/javascript">
function showonlyone(thechosenone) {
$('div[name|="newboxes"]').each(function(index) {
if ($(this).attr("id") == thechosenone) {
$(this).slideToggle(200);
}
else {
$(this).hide(600);
}
});
}
Is there a way to perhaps just include and rename the code needed from Jquery.js in the menu.html so that it doesn't need to call the jquery.js and fix the conflict?
Thanks in advance.