I've downloaded the relevant jquery files into a js folder and have inserted this lot into the head of my html file:
<script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript" src="js/jcarousellite.js"></script> <script type="text/javascript" src="js/easing.js"></script>
I've then added my list of items:
div id="carousel">
<ul>
<li><a href="http://www.financialplanning.org.uk/directory/united-kingdom/london-city/london/duncan-glassey" title="CFP - We hold the globally recognised standard of excellence" target="_blank" id="btn-cfp"></a></li>
<li><a href="http://www.sifa-centre.info/search/firm_individuals.asp?reference=4408" title="We are members of SIFA" target="_blank" id="btn-sifa"></a></li>
<li><a href="http://www.apil.org.uk/" title="1st tier expert in financial planning" target="_blank" id="btn-apil"></a></li>
<li><a href="http://www.fpanet.org/professionals/Connect/CommunitiesofInterest/InternationalCommunity/" title="Members of International FPA Community" target="_blank" id="btn-fpa"></a></li>
<li><a href="#" title="New Model Adviser® awards 2012 - Finalist: Best IFA Firm (Scotland and Northern Ireland)" target="_blank" id="btn-nma"></a></li>
<li><a href="#" title="The Personal Finance Society - The professional body for the financial planning profession in the UK" target="_blank" id="btn-pfs"></a></li>
</ul>
</div>
then added the auto scroll bit of code supplied:
<script type="text/javascript">
$(function() {
$(".auto .jCarouselLite").jCarouselLite({
auto: 800,
speed: 1000
});
});
</script>
So why doesn't it work? My Page Here - what am I missing? I can't view the source code of the auto scroll demo and so can't copy and paste.
I've implemented rcarousel on this page but I don't like the way it works as I want a carousel that increments one image at a time.
If anyone can help me that'd be great as jQuery and my brain don't mix and I can never get things working.
Help



















