Is it possible to use fancybox to load a specifc div #id from another page rather than loading the whole page via an iframe?
For example I can use
$('#link-whole').fancybox({
'width' : '80%',
'height' : '80%',
'type' : 'iframe',
});
with
<a id="link-whole" href="somepage.html">link 1</a>
to load all of 'somepage.html' into the iframe but how would I load JUST the content from a div with the id "target" (for example)?