I'm working on http://www.aceaofmidland.com/ and I'm trying to use jQuery and jQuery.cycle to cycle through a wordpress custom post type that's marked up like so:
<div id="toolbar">
<div id="home">
<div id="arrows">
<div class="prev"></div>
<div class="next"></div>
</div>
<div id="descriptions">
<div><strong>Second Home Alert Test</strong><br><p>Testing Testing Testing</p></div>
<div><strong>Test Home Alert Title</strong><br><p>Test Content for homepage alert</p></div>
</div>
</div>
</div>
I'm using the following jQuery to try and activate the cycling. I'm positive I have the scripts correctly loaded, and in order too.
<script type="text/javascript">
jQuery.noConflict();
jQuery(function(){
jQuery('#descriptions').cycle({
next: '.next',
prev: '.prev',
fx: 'fade',
speed: 'fast',
timeout: 5000,
pause: 1
});
});
</script>
If anyone can find out how to get this to work, I'll be forever grateful. Thank you!