ThickBox 3.1

Markleshark

Junior Member
Morning,

Trying to implement Fancybox on my webpage only opens the link in a new page (Trying the AJAX version) and not in the Fancybox it's self, I'm a touch out of my depth as my knowledge stretches as far as moderate HTML and CSS. Could someone please have a look at the Source on my Test Page and possibly give me pointers as to why it's not displaying, must be something to do with calling the jQuery correctly.

Thanks,
Mark.
 
You haven't defined the id on your link.

Change:
HTML:
<a href="news/welcome.html">News Link Tester</a>

To:
HTML:
<a id="inline" href="news/welcome.html">News Link Tester</a>

Without this, fancybox doesn't recognise that the link is to be used with fancybox.
 
Back
Top