Links within Fancybox

Permalink
I'm trying to create an URL link within a fancybox and this is what I have:

<a class="tab" href="......">
</a>

However, when I click on the link nothing happens. Please help!

 
PineCreativeLabs replied on at Permalink Reply
PineCreativeLabs
Are you trying to link to another page?

If so, you may want to try this:

<a class="tab" href="..." target="_blank">LINK TEXT</a>


Notice the target="_blank" bit. This should open the link in a new browser window.

Here's more help on using the target attribute in the <a> tag:
http://www.w3schools.com/tags/att_a_target.asp...

Hope that helps?