I would like, when the user click on image in the open popup, the content will changed with url in iframe (not close/open, but crossfade)
I have a gallery with hs.transitions = ['expand', 'crossfade'].
Next construction will close old popup window and open new one (and break the slideshow), but i want the same effect (crossfade), like a user click next image.
hs.allowMultipleInstances = false;
hs.Expander.prototype.onImageClick = function()
{
return hs.htmlExpand(null, { objectType: 'iframe', src: 'url' });
};
How to make it?
Sample - http://jsfiddle.net/xCnfE/4/