ファンシーボックスでは、通常、この関数を使用してドキュメント情報をバインドできます。
$("#someID").on('click', function() {
今、ファンシーボックスのコンテンツを動的に開いています。例を次に示します。
function openFancyBox(id, type)
{
if(type != 'default')
{
CurrentFeaturePositionID = id;
$.fancybox({
type: 'inline',
'content' : $('#' + type + '_fb').html()
});
}
}
このメソッドを使用してコンテンツをバインドするにはどうすればよいですか?