Jump to content

Looking for a script


DimitriDV

Recommended Posts

nice script but doesn't work

here's my code:

 

<button class="prev"><<</button>
<button class="next">>></button>
      
<div class="carousel"> 
<a href="#" class="prev">&nbsp</a> 
  <div class="jCarouselLite">
    <ul>
        <li><img src="images/stories/1.jpg" /></li>
        <li><img src="images/stories/2.jpg" /></li>
        <li><img src="images/stories/3.jpg" /></li>
        <li><img src="images/stories/4.jpg" /></li>
        <li><img src="images/stories/5.jpg" /></li>
        <li><img src="images/stories/6.jpg" /></li>
    </ul>
   <script type="text/javascript"> 
      $(".carousel").jCarouselLite({
       *      btnNext: ".next",
       *      btnPrev: ".prev"
       * });
   </script>
  </div> 
<button class="next">>></button> 
<div class="clear"></div>   
</div>

 

 

can someone help me?

I also added the js in head section:

<script type="text/javascript" src="http://www.certipost.be/retail/js/jquery.js"></script>
<script type="text/javascript" src="http://www.certipost.be/retail/js/jcarousellite_1.0.1.js"></script>
<script type="text/javascript" src="http://www.certipost.be/retail/js/jcarousellite_1.0.1.min.js"></script>
<script type="text/javascript" src="http://www.certipost.be/retail/js/jcarousellite_1.0.1.pack.js"></script>

Link to comment
https://forums.phpfreaks.com/topic/142083-looking-for-a-script/#findComment-746426
Share on other sites

 

 

 

can someone help me?

I also added the js in head section:

<script type="text/javascript" src="http://www.certipost.be/retail/js/jcarousellite_1.0.1.js"></script>
<script type="text/javascript" src="http://www.certipost.be/retail/js/jcarousellite_1.0.1.min.js"></script>
<script type="text/javascript" src="http://www.certipost.be/retail/js/jcarousellite_1.0.1.pack.js"></script>

you only need one of this js files it's the same file but compressed(or not compressed) differently.

 

What are the errors you recieve?

Link to comment
https://forums.phpfreaks.com/topic/142083-looking-for-a-script/#findComment-746429
Share on other sites

are you sure there are no javascript errors?

 

this part doesn't look like it will not cause any errors

<script type="text/javascript">
      $(".carousel").jCarouselLite({
       *      btnNext: ".next",
       *      btnPrev: ".prev"
       * });
   </script>

 

 

Link to comment
https://forums.phpfreaks.com/topic/142083-looking-for-a-script/#findComment-746438
Share on other sites

<button class="prev"><<</button>      
<button class="next">>></button>
  
<div class="anyClass">
<ul>
<li><img src="1.jpg" alt="1" /></li>
<li><img src="2.jpg" alt="2" /></li>
<li><img src="3.jpg" alt="3" /></li>
<li><img src=4.jpg" alt="4" /></li>
<li><img src="5.jpg" alt="5" /></li>
<li><img src="6.jpg" alt="6" /></li>
</ul>
<script type="text/javascript"> 
$(function() {
    $(".anyClass").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev"
    });
});
</div>

 

script does not work, images are vertical underneath each other, no horizontal scrollbar

i'm getting crazy

Link to comment
https://forums.phpfreaks.com/topic/142083-looking-for-a-script/#findComment-746508
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.