I have a basic slider to reveal certain parts on my page .
$('ul.spec').hide();
$('div#trucks> h2').click(function() {
$(this).next('ul.spec').toggle('slow')
$('div.trucks').siblings('ul:visible').slideUp('fast');
});
});
Inside the ul items are images I am trying to use lightbox2 with
http://www.huddletogether.com/projects/lightbox2/The lightbox is not working, it is on other pages with out the slider script, so I guess that’s the problem some sort of conflict between libraries?. i am very new to scripting so does anybody know what i could do ??
many thanks
Dan