動的に生成されたタグがクリックされたときにjqueryファンシーボックスをロードする必要があります。初めてリンクをクリックしたとき、2回目にクリックしたときにファンシーボックスが表示されません。
解決策を教えていただけますか?これが私のコードです、
$(document).ready(function()
{
$(".app a").live('click',function(e){
e.preventDefault();
var contentId = $(this).attr('id');
$("#"+contentId).fancybox({
'titleShow' : false,
'padding' : 0,
'transitionIn' : 'elastic',
'transitionOut' : 'elastic',
'autoDimensions':false,
'width' :380,
'height' :500,
'showCloseButton' : true,
'hideOnOverlayClick' : false
});
});
});
<div class="app">
<a href="#device_detection" id="apps_<?= $regUsers->id; ?>"> click here</a>
</div>