My friends involved with the website http://thetutuproject.com/ and as you can see there is markup displayed in the hover text. Now I've tried the fix using
script:
$(document).ready(function() {
$(".fancybox").fancybox({
helpers: { title: false}
});
});
link:
<a rel="group" class="fancybox" href="001.jpg" title="derp">
<img src="images/thumbs/001.jpg" width="140"/>
</a>
divs:
<div id="fancyboxTitles" style="display: none;">
<div>fancybox title one</div>
<div>fancybox title two</div>
<div>fancybox title three</div>
</div>
That JFK suggested
But I have had absolutely no success. It still displays the title in the fancybox popup as "derp" or whatever text is in the title portion of that link. Any help would be greatly appreciated. The only other way I can think to fix this is put each image in a separate web page, but that way I don't think you could scroll between them.
Thanks