php - Wordpress Jquery Cycle2 plugin not working -


i using cycle2 plugin in wordpress homepage, won't work. first tried using class "cycle-slideshow", on console log:

[cycle2] --c2 init--

now i'm trying use api, still log message, no slider. code:

<script type="text/javascript">             jquery(document).ready(function(){                 jquery( '#home_slider' ).cycle();             });             </script>              <div id='home_slider'>                                 <div class='home_slide'>                     <div class='slide_tit'>proyectos</div>                     <div class='slide_resumen'>esta es la descripcion</div>                     <img src='http://localhost/laben/wp-content/uploads/2013/05/header03.jpg'/>                 </div>                             <div class='home_slide'>                     <div class='slide_tit'>investigación</div>                     <div class='slide_resumen'>las principales Áreas de investigación del laboratorio de envases de la universidad de santiago de chile están relacionadas con envases activos, interacción envase/alimento, nanotecnología y envases biodegradables. es preciso indicar que todas estas no son áreas independientes sino más bien áreas que se complementan totalmente entre sí.</div>                     <img src='http://localhost/laben/wp-content/uploads/2013/05/header01.jpg'/>                 </div>                             <div class='home_slide'>                     <div class='slide_tit'>servicios</div>                     <div class='slide_resumen'>esta es la descripcion</div>                     <img src='http://localhost/laben/wp-content/uploads/2013/05/header02.jpg'/>                 </div> 

fixed it. supports images default, make slider out of other elements needs specified selector:

<script type="text/javascript"> jquery(document).ready(function(){     jquery( '#home_slider' ).cycle({ slides: '.home_slide' }); }); </script> 

Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -