I have some jQuery that rotates some images using prettyPhoto as per the documentation
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$("[rel^='prettyPhoto']").prettyPhoto({ animationSpeed: 'fast', slideshow: 10000, timeout: 2000, autoplay_slideshow:true });
api_images = ['img1.jpg', 'img2.jpg'];
api_titles = ['', ''];
api_descriptions = ['', '']
$.prettyPhoto.open(api_images, api_titles, api_descriptions);
});
</script>
How could i add a hyperlink to each image?
Go to the complete details ...