Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to enter custom HTML as the title, like this:

$(".fancybox").fancybox({
  padding: 0,
  title: '<a href="http://www.google.com">Hello</a>'
});

...but I also want a gallery of images.

I don't think you can have both as each gallery should use the same code above, but each unique title needs a separate implementation of the above code. Is this possible?

Also, is there a better way to set say 20 images, all in the same gallery and all with custom title content. At the moment I'm guessing I would need to specify each one individually using this code:

$("#fancybox-number-1").fancybox({
  padding: 0,
  title: 'custom-title-1'
});

(...but of course the gallery won't work and even if it did, specifying this 20 times sounds bad practice to me.)

How do I specify custom title, and have a gallery of 20 or so images in the best way possible?

share|improve this question
what version of fancybox? – JFK Aug 20 '12 at 21:47
The latest. Version: 2.0.6 (Thu, 19 Jul 2012) to be exact. – user1612824 Aug 20 '12 at 21:57
You could either do this <stackoverflow.com/a/8425900/1055987>; or this <stackoverflow.com/a/9611664/1055987>; – JFK Aug 20 '12 at 21:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.