-d-dwmed-b7f1232-9930-4ddd-8c75-c06afb5c408a-crop.jpg
c212a4e2-a260-4f96-b4d3-ce4f94f4fb69
So, I would need the following code, but it is not working:
targetID = $('#fancybox-frame').attr("target");
targetID = targetID.replace('','');
console.log(targetID)
$.fancybox.open(
{
// used to prevent the 'go to start of page' that happens when you select links or images when fancybox is open
prevEffect : 'none',
nextEffect : 'none'
}
);
// Append fancybox iframe
$('#' + targetID).appendTo('body');
How can I do this?
A:
Try with this:
var $targetID = $("#fancybox-frame").attr("target");
Then if you need to send it, send it as an parameter, for example:
$.fancybox.open({
prevEffect : 'none',
nextEffect : 'none',
target : $targetID
});
$("#" + targetID).appendTo('body');
This is a very nice, very large naturalistic fantasy figure. Well-proportioned, strong overall appearance. The skin looks very nice. Black hair and blue eyes are a nice combination. The clothing is well-proportioned. A nice, fun figure.
Packaging is nice and detailed. You
Related links:
Comments