Topic: HTML links in caption CDATA don't work in Webkit browsers
When I enter an HTML link into the CDATA part of the caption, it works fine with Firefox and IE, but not in Webkit browsers. The caption is an overlay at the bottom. Webkit browser ignores the link and uses the previous image command and goes back an image if there is a back, but won't open the link.
My example is here: http://www.idimension.com/flash/47/47.html, please test with Chrome and or Safari and let me know what you suggest.
this is the start of the XML
<simpleviewergallery
firstImageIndex = "0"
cropToFit="true"
resizeOnImport="false"
maxImageWidth="640"
maxImageHeight="640"
imageQuality="90"
useFlickr="false"
backgroundColor="000000"
galleryStyle="COMPACT"
frameWidth="20"
imageFrameStyle="ROUNDED"
imageNavStyle="CURSOR"
imageCornerRadius="5"
showAutoPlayButton="true"
autoPlayOnLoad="true"
enableLooping="true"
indexPageName="47.html"
thumbRows="0"
thumbColumns="0"
>
<image imageURL="1.jpg"
thumbURL="1_tn.jpg"
linkURL="vote.html"
linkTarget="_blank">
<caption><![CDATA[Title of Photo<br>Person who took the photo<br>Location of Photo<br><a href='vote.html'>Click me to 'Vote for This Photo'</a>]]></caption>
</image>