Is it possible to use fancybox to load the specified div #id from another page, and not to load the whole page through an iframe?
For example, I can use
$('#link-whole').fancybox({ 'width' : '80%', 'height' : '80%', 'type' : 'iframe', });
from
<a id="link-whole" href="somepage.html">link 1</a>
to load all โsomepage.htmlโ into an iframe, but how can I load the JUST content from a div with the identifier โtargetโ (for example)?
jquery fancybox
Mr Jonny Wood
source share