I'm using a jQuery plug-in called Elastislide which can be seen here: http://tympanus.net/codrops/2011/09/20/responsive-image-gallery/
The problem I'm having is I'm trying to insert a hyperlink into the gallery image description area but it doesn't seem to allow any html coding to work in this area. Any way around this?
Relevant html code looks like this:
<div id="rg-gallery" class="rg-gallery">
<div class="rg-thumbs">
<!-- Elastislide Carousel Thumbnail Viewer -->
<div class="es-carousel-wrapper">
<div class="es-nav">
<span class="es-nav-prev">Previous</span>
<span class="es-nav-next">Next</span>
</div>
<div class="es-carousel">
<ul>
<li>
<a href="#">
<img src="images/print_thumbs/1.jpg" data-large="images/print_images/1.jpg" alt="image01" data-description="This is my text. would love a linked word on some of them" />
</a>
</li>
if( title ) $rgGallery.find('div.rg-caption').show().children('p').empty().text( title );
instead of .text use .html and in data-description enter in html link like google this is a shortcut way the better way would be to change this setting title = $thumb.data('description'); to whatever you want
but the first way is easier and should work