html - carouFredSel jQuery in Wordpress -


i using caroufredsel jquery slider on html code:

<div class="list_carousel">         <ul id="foo">             <li>c</li>             <li>a</li>             <li>r</li>             <li>o</li>             <li>u</li>             <li>f</li>             <li>r</li>             <li>e</li>             <li>d</li>             <li>s</li>             <li>e</li>             <li>l</li>             <li> </li>         </ul>         <div class="clearfix"></div>         <a id="prev" class="prev" href="#">&lt;</a>         <a id="next" class="next" href="#">&gt;</a>         <div id="pager2" class="pager"></div>     </div> 

and jquery

<script type="text/javascript" src="javascript/jquery-1.8.2.min.js"></script> <script type="text/javascript" src="javascript/jquery.caroufredsel-6.2.0.js"></script> <script> $(document).ready(function() { $('#foo').caroufredsel({                     auto: false,                     prev: '#prev',                     next: '#next',                     pagination: "#pager",                     mousewheel: true,                     swipe: {                         onmouse: true,                         ontouch: true                     }                 }); }); </script> 

when use in standard html, works fine when transfer code wordpress site, query doesn't work. might wrong?

surely might script source mistake.. after path refered while pasting in website....


Comments

Popular posts from this blog

android - getbluetoothservice() called with no bluetoothmanagercallback -

sql - ASP.NET SqlDataSource, like on SelectCommand -

ios - Undefined symbols for architecture armv7: "_OBJC_CLASS_$_SSZipArchive" -