jquery cycle plugin captions/ wordpress theme
Hi there,
I looked at the example on the jquery cycle site for displaying the metadata but i don't seem to integrate well the two snippets of code.
Here's the code from wpshower:
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('#show').after('<div id="show_nav">').cycle({
fx: 'fade',
speed: 500,
next: '#show',
timeout: 0,
pager: '#show_nav',
after: function() { // this is the snippet from jquery cycle
$('#caption').html(this.alt);
}
});
});
Any help will be much appreciated!